Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Terra Loader
- -- Version 1.3
- --https://discord.gg/qvQymb7NAW
- --More help here /\
- -- ||
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Player = game.Players.LocalPlayer
- local Window = OrionLib:MakeWindow({Name = "Terra Key", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- OrionLib:MakeNotification({
- Name = "Terra key",
- Content = "Logged as"..Player.Name..".",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- local NP = Window:MakeTab({
- Name = "Non premium",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- NP:AddSlider({
- Name = "Speed changer",
- Min = 16,
- Max = 100,
- Default = 16,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Speed power",
- Callback = function(S)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = S
- end
- })
- NP:AddSlider({
- Name = "Jump changer",
- Min = 50,
- Max = 150,
- Default = 50,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Jump power",
- Callback = function(J)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = J
- end
- })
- local Tab = Window:MakeTab({
- Name = "Premium Key",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- _G.Key = "JebacPis"
- _G.KeyInput = "String"
- function CR()
- loadstring(game:HttpGet('https://pastebin.com/raw/wkfWuQUG'))()
- OrionLib:MakeNotification({
- Name = "Correct Key",
- Content = "You PutCorrect Key!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- function IK()
- OrionLib:MakeNotification({
- Name = "Incorrect",
- Content = "You Put Incorrect key!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- Tab:AddTextbox({
- Name = "Put key here!",
- Default = "",
- TextDisappear = true,
- Callback = function(Value)
- _G.KeyInput = Value
- end
- })
- Tab:AddButton({
- Name = "Active key",
- Callback = function()
- if _G.KeyInput == _G.Key then
- CR()
- else
- IK()
- end
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement