if game.PlaceId == 7211666966 then
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "💎Darelle's Script💎",
Icon = 0,
LoadingTitle = "Darelle Hub",
LoadingSubtitle = "by Darelle",
Theme = "Default",
ToggleUIKeybind = "K",
ConfigurationSaving = {
Enabled = false,
FileName = "DarelleHub"
},
KeySystem = true,
KeySettings = {
Title = "Tower of Jump | Key",
Subtitle = "Click to get Key",
Note = "Click link from Misc Tab",
FileName = "Tower Of Jump",
SaveKey = false,
GrabKeyFromSite = true,
Key = {"https://pastebin.com/raw/qUf6iK70"}
}
})
-- TABS
local MainTab = Window:CreateTab("ðŸ Home", nil)
local OthersTab = Window:CreateTab("Others", nil)
local MiscTab = Window:CreateTab("Misc", nil)
-- SECTIONS
local MainSection = MainTab:CreateSection("Main")
local OthersSection = OthersTab:CreateSection("Fun and Others")
local MiscSection = MiscTab:CreateSection("Misc and Others")
Rayfield:Notify({
Title = "You executed the script",
Content = "Very good GUI",
Duration = 5,
Image = nil,
})
-- HOME TAB BUTTONS
local Button1 = MainTab:CreateButton({
Name = "Infinite Jump",
Callback = function()
local InfiniteJumpEnabled = true
local UserInputService = game:GetService("UserInputService")
UserInputService.JumpRequest:Connect(function()
if InfiniteJumpEnabled then
local character = game:GetService("Players").LocalPlayer.Character
if character and character:FindFirstChildOfClass("Humanoid") then
character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
end
end
end)
end,
})
local Button2 = MainTab:CreateButton({
Name = "Invisible",
Callback = function()
local player = game:GetService("Players").LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
for _, part in pairs(character:GetDescendants()) do
if part:IsA("BasePart") or part:IsA("Decal") then
part.Transparency = 1
end
if part:IsA("BillboardGui") or part:IsA("SurfaceGui") then
part.Enabled = false
end
end
end,
})
local Slider1 = MainTab:CreateSlider({
Name = "WalkSpeed",
Range = {0, 300},
Increment = 1,
Suffix = "Speed",
CurrentValue = 16,
Flag = "Slider1",
Callback = function(Value)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
end,
})
local Slider2 = MainTab:CreateSlider({
Name = "JumpPower",
Range = {0, 500},
Increment = 1,
Suffix = "Jump",
CurrentValue = 50,
Flag = "Slider2",
Callback = function(Value)
local hum = game.Players.LocalPlayer.Character.Humanoid
hum.UseJumpPower = true
hum.JumpPower = Value
end,
})
-- OTHERS TAB BUTTONS
local Button3 = OthersTab:CreateButton({
Name = "Disco Visual",
Callback = function()
local isDisco = true
local TweenService = game:GetService("TweenService")
local Lighting = game:GetService("Lighting")
local function getRandomColor()
return Color3.fromHSV(math.random(), 1, 1)
end
task.spawn(function()
while isDisco do
local newColor = getRandomColor()
local tweenInfo = TweenInfo.new(0.5, Enum.EasingStyle.Linear)
TweenService:Create(Lighting, tweenInfo, {Ambient = newColor, OutdoorAmbient = newColor}):Play()
for _, part in pairs(game.Workspace:GetDescendants()) do
if part:IsA("BasePart") and part.Transparency < 1 then
part.Color = newColor
end
end
task.wait(0.5)
end
end)
end,
})
-- MISC TAB BUTTONS
local ButtonDiscord = MiscTab:CreateButton({
Name = "Copy link Discord",
Callback = function()
setclipboard("https://discord.gg/zpTJQMXmqt")
Rayfield:Notify({
Title = "Link Copied!",
Content = "Discord link has been added to your clipboard.",
Duration = 6.5,
Image = 4483362458,
})
end,
})
end
Comments
No comments yet
Be the first to share your thoughts!