AaronC_scripts

my gui

Aug 14th, 2023 (edited)
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "JumpPower WalkSpeed Gui",
  5. LoadingTitle = "Rayfield Interface Suite",
  6. LoadingSubtitle = "by youngshooter",
  7. })
  8.  
  9. local Tab = Window:CreateTab("physical", 4483362458) -- Title, Image
  10.  
  11. local Slider = Tab:CreateSlider({
  12. Name = "JumpPower",
  13. Range = {50, 500},
  14. Increment = 10,
  15. Suffix = "JumpPower",
  16. CurrentValue = 10,
  17. 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
  18. Callback = function(Value)
  19. game.Players.LocalPlayer.Character:FindFirstChild("Humanoid").JumpPower = Value
  20. end,
  21. })
  22.  
  23. local Slider = Tab:CreateSlider({
  24. Name = "WalkSpeed",
  25. Range = {16, 150},
  26. Increment = 3,
  27. Suffix = "WalkSpeed",
  28. CurrentValue = 10,
  29. 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
  30. Callback = function(WalkSpeed)
  31. game.Players.LocalPlayer.Character:FindFirstChild("Humanoid").WalkSpeed = WalkSpeed
  32. end,
  33. })
  34.  
  35. local Button = Tab:CreateButton({
  36. Name = "Fly Gui",
  37. Callback = function()
  38. loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
  39. end,
  40. })
  41.  
  42. local Button = Tab:CreateButton({
  43. Name = "Reviz Admin",
  44. Callback = function()
  45. loadstring(game:HttpGet("https://pastebin.com/raw/dbHEWFwv"))()
  46. end,
  47. })
  48.  
Advertisement
Add Comment
Please, Sign In to add comment