Bongo hub OUTCOME MEMORIES SCRIPT
15 Views
1d atrás
Verificado
Descrição
Nenhuma descrição fornecida.
Como Utilizar?
Script
1local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
2
3local Window = Rayfield:CreateWindow({
4 Name = "OM Script",
5 Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
6 LoadingTitle = "outcome memories script",
7 LoadingSubtitle = "by bonge951",
8 ShowText = "outcome memories", -- for mobile users to unhide rayfield, change if you'd like
9 Theme = "Default", -- Check https://docs.sirius.menu/rayfield/configuration/themes
10
11 ToggleUIKeybind = "K", -- The keybind to toggle the UI visibility (string like "K" or Enum.KeyCode)
12
13 DisableRayfieldPrompts = false,
14 DisableBuildWarnings = false, -- Prevents Rayfield from warning when the script has a version mismatch with the interface
15
16 ConfigurationSaving = {
17 Enabled = true,
18 FolderName = nil, -- Create a custom folder for your hub/game
19 FileName = "Big Hub"
20 },
21
22 Discord = {
23 Enabled = true, -- Prompt the user to join your Discord server if their executor supports it
24 Invite = "https://discord.gg/dnkVUFuMr", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ ABCD would be ABCD
25 RememberJoins = true -- Set this to false to make them join the discord every time they load it up
26 },
27
28 KeySystem = false, -- Set this to true to use our key system
29 KeySettings = {
30 Title = "OM script key",
31 Subtitle = "key system",
32 Note = "join the discord to use script https://discord.gg/dnkVUFuMr", -- Use this to tell the user how to get a key
33 FileName = "bongo", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
34 SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
35 GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
36 Key = {"bongo"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","me")
37 }
38})
39
40local Tab = Window:CreateTab("esp", 4483362458) -- Title, 137182874573549
41
42local Section = Tab:CreateSection("Esp for low ping")
43
44local Button = Tab:CreateButton({
45 Name = "Fullbright no fog esp",
46 Callback = function() --[[
47 WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
48]]
49loadstring(game:HttpGet('https://pastebin.com/raw/Rc1PmqpF',true))()
50 -- The function that takes place when the button is pressed
51 end,
52})
53
54local Section = Tab:CreateSection("Esp for high ping")
55
56local Button = Tab:CreateButton({
57 Name = "esp",
58 Callback = function() --[[
59 WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
60]]
61loadstring(game:HttpGet("https://gist.githubusercontent.com/cquil123/3ee03f641bf59c40b5305135e6de02c1/raw"))()
62 -- The function that takes place when the button is pressed
63 end,
64})
65
66local Tab1 = Window:CreateTab("local", 4483362458) -- Title, Image
67
68local Section = Tab1:CreateSection("Speed")
69
70local Button = Tab1:CreateButton({
71 Name = "speed (makes you slightly faster than exe",
72 Callback = function() -- by omgamlookyou4 / himrng
73
74local UserInputService = game:GetService("UserInputService")
75local RunService = game:GetService("RunService")
76local Players = game:GetService("Players")
77
78local player = Players.LocalPlayer
79local char = player.Character or player.CharacterAdded:Wait()
80local hrp = char:WaitForChild("HumanoidRootPart")
81local humanoid = char:WaitForChild("Humanoid")
82
83-- speed
84local walkSpeed = 16
85local runSpeed = 75
86local currentSpeed = walkSpeed
87
88
89local running = false
90
91UserInputService.InputBegan:Connect(function(input, gpe)
92 if gpe then return end
93 if input.KeyCode == Enum.KeyCode.LeftShift then
94 running = true
95 currentSpeed = runSpeed
96 end
97end)
98
99UserInputService.InputEnded:Connect(function(input, gpe)
100 if input.KeyCode == Enum.KeyCode.LeftShift then
101
102-- [[ SCRIPTHUB - RECORTADO PARA MELHOR PERFORMANCE ]]
103-- O script é muito grande para visualização completa no navegador.
104-- Utilize os botões de 'Copiar' ou 'Download' para obter o código completo.