Advertisement
TerraMine

Terra Script Loader

Aug 23rd, 2022 (edited)
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. --Terra Loader
  2. -- Version 1.3
  3. --https://discord.gg/qvQymb7NAW
  4. --More help here /\
  5. -- ||
  6.  
  7. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  8. local Player = game.Players.LocalPlayer
  9. local Window = OrionLib:MakeWindow({Name = "Terra Key", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  10.  
  11. OrionLib:MakeNotification({
  12. Name = "Terra key",
  13. Content = "Logged as"..Player.Name..".",
  14. Image = "rbxassetid://4483345998",
  15. Time = 5
  16. })
  17. local NP = Window:MakeTab({
  18. Name = "Non premium",
  19. Icon = "rbxassetid://4483345998",
  20. PremiumOnly = false
  21. })
  22.  
  23. NP:AddSlider({
  24. Name = "Speed changer",
  25. Min = 16,
  26. Max = 100,
  27. Default = 16,
  28. Color = Color3.fromRGB(255,255,255),
  29. Increment = 1,
  30. ValueName = "Speed power",
  31. Callback = function(S)
  32. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = S
  33. end
  34. })
  35.  
  36. NP:AddSlider({
  37. Name = "Jump changer",
  38. Min = 50,
  39. Max = 150,
  40. Default = 50,
  41. Color = Color3.fromRGB(255,255,255),
  42. Increment = 1,
  43. ValueName = "Jump power",
  44. Callback = function(J)
  45. game.Players.LocalPlayer.Character.Humanoid.JumpPower = J
  46. end
  47. })
  48.  
  49. local Tab = Window:MakeTab({
  50. Name = "Premium Key",
  51. Icon = "rbxassetid://4483345998",
  52. PremiumOnly = false
  53. })
  54.  
  55.  
  56. _G.Key = "JebacPis"
  57. _G.KeyInput = "String"
  58.  
  59. function CR()
  60. loadstring(game:HttpGet('https://pastebin.com/raw/wkfWuQUG'))()
  61.  
  62. OrionLib:MakeNotification({
  63. Name = "Correct Key",
  64. Content = "You PutCorrect Key!",
  65. Image = "rbxassetid://4483345998",
  66. Time = 5
  67. })
  68. end
  69. function IK()
  70. OrionLib:MakeNotification({
  71. Name = "Incorrect",
  72. Content = "You Put Incorrect key!",
  73. Image = "rbxassetid://4483345998",
  74. Time = 5
  75. })
  76. end
  77. Tab:AddTextbox({
  78. Name = "Put key here!",
  79. Default = "",
  80. TextDisappear = true,
  81. Callback = function(Value)
  82. _G.KeyInput = Value
  83. end
  84. })
  85.  
  86. Tab:AddButton({
  87. Name = "Active key",
  88. Callback = function()
  89. if _G.KeyInput == _G.Key then
  90. CR()
  91. else
  92. IK()
  93. end
  94. end
  95. })
  96.  
  97.  
  98.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement