Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
- local Window = Rayfield:CreateWindow({
- Name = "JumpPower WalkSpeed Gui",
- LoadingTitle = "Rayfield Interface Suite",
- LoadingSubtitle = "by youngshooter",
- })
- local Tab = Window:CreateTab("physical", 4483362458) -- Title, Image
- local Slider = Tab:CreateSlider({
- Name = "JumpPower",
- Range = {50, 500},
- Increment = 10,
- Suffix = "JumpPower",
- CurrentValue = 10,
- Flag = "JumpPower", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
- Callback = function(Value)
- game.Players.LocalPlayer.Character:FindFirstChild("Humanoid").JumpPower = Value
- end,
- })
- local Slider = Tab:CreateSlider({
- Name = "WalkSpeed",
- Range = {16, 150},
- Increment = 3,
- Suffix = "WalkSpeed",
- CurrentValue = 10,
- Flag = "WalkSpeed", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
- Callback = function(WalkSpeed)
- game.Players.LocalPlayer.Character:FindFirstChild("Humanoid").WalkSpeed = WalkSpeed
- end,
- })
- local Button = Tab:CreateButton({
- Name = "Fly Gui",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
- end,
- })
- local Button = Tab:CreateButton({
- Name = "Reviz Admin",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/dbHEWFwv"))()
- end,
- })
Advertisement
Add Comment
Please, Sign In to add comment