Advertisement
Guest User

nations rp script

a guest
Aug 29th, 2022
2,359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Nations Roleplay", "Midnight")
  3.  
  4. -- Main
  5. local Main = Window:NewTab("Main")
  6. local MainSection = Main:NewSection("Color Changer")
  7.  
  8. MainSection:NewButton("Black", "Changes the whole map to black", function()
  9.  
  10. loadstring(game:HttpGet("https://pastebin.com/raw/pbLGF30t"))()
  11.  
  12. end)
  13.  
  14. MainSection:NewButton("Red", "Changes the whole map to black", function()
  15.  
  16. loadstring(game:HttpGet("https://pastebin.com/raw/kjSKQkyq"))()
  17. end)
  18.  
  19. MainSection:NewButton("Orange", "Changes the whole map to black", function()
  20.  
  21. loadstring(game:HttpGet("https://pastebin.com/raw/i22gvAZb"))()
  22. end)
  23.  
  24. MainSection:NewButton("Yellow", "Changes the whole map to black", function()
  25.  
  26. loadstring(game:HttpGet("https://pastebin.com/raw/R45ee1Sv"))()
  27. end)
  28.  
  29. MainSection:NewButton("Green", "Changes the whole map to black", function()
  30.  
  31. loadstring(game:HttpGet("https://pastebin.com/raw/qTw6s4qu"))()
  32. end)
  33.  
  34. MainSection:NewButton("Blue", "Changes the whole map to black", function()
  35.  
  36. loadstring(game:HttpGet("https://pastebin.com/raw/vLhJUwdF"))()
  37. end)
  38.  
  39. MainSection:NewButton("Indigo", "Changes the whole map to black", function()
  40.  
  41. loadstring(game:HttpGet("https://pastebin.com/raw/GVe8xpnk"))()
  42. end)
  43.  
  44. MainSection:NewButton("Violet", "Changes the whole map to black", function()
  45.  
  46. loadstring(game:HttpGet("https://pastebin.com/raw/UgTmb6kc"))()
  47. end)
  48.  
  49.  
  50. local Other = Main:NewSection("Fun")
  51.  
  52. Other:NewButton("Back/Front Flip", "Makes you do gymnastics", function()
  53. loadstring(game:HttpGet('https://pastebin.com/raw/7wDcPtLk'))()
  54. end)
  55.  
  56. Other:NewToggle("Super-Human", "go fast and jump high", function(state)
  57. if state then
  58. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
  59. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
  60. else
  61. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  62. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  63. end
  64. end)
  65.  
  66. Other:NewButton("Infinite Yield", "FE Admin Commands", function()
  67. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  68. end)
  69.  
  70.  
  71. --LOCAL PLAYER
  72. local Player = Window:NewTab("Player")
  73. local PlayerSection = Player:NewSection("Player")
  74.  
  75. PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s)
  76. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  77. end)
  78.  
  79. PlayerSection:NewSlider("Jumppower", "JUMP HIGH!!", 350, 50, function(s)
  80. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  81. end)
  82.  
  83. PlayerSection:NewButton("Reset WS/JP", "Resets to all defaults", function()
  84. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  85. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  86. end)
  87.  
  88.  
  89. --Other
  90. local Other = Window:NewTab("Other")
  91. local OtherSection = Other:NewSection("Other")
  92.  
  93. OtherSection:NewButton("Chat Spoofer", "Lets you chat for other people", function()
  94. loadstring(game:HttpGet(('https://pastebin.com/raw/djBfk8Li'),true))()
  95. end)
  96.  
  97. OtherSection:NewButton("Bypassed Fly", "bird mode", function()
  98. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))()
  99.  
  100. Fly(true)
  101. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement