Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Prison Hub
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local player = game.Players.LocalPlayer
- local Window = OrionLib:MakeWindow({Name = "Prison Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- OrionLib:MakeNotification({
- Name = "Logging!",
- Content = "You are logging in as " .. player.Name .. " ",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- _Get = {}
- _Get.Key = "Hello"
- _Get.KeyInput = "String"
- function MakeScriptHub()
- local Window = OrionLib:MakeWindow({Name = "Prison Hub", HidePremium = false, SaveConfig = true, IntroEnabled = true, IntroText = "Prison Hub"})
- end
- function CorrectKeyNotification()
- OrionLib:MakeNotification({
- Name = "Correct Key!",
- Content = "You Have Entered The Correct Key!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- function IncorrectKeyNotification()
- OrionLib:MakeNotification({
- Name = "Incorrect Key!",
- Content = "You Have Entered The Incorrect Key!",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end
- local PlayerTab = Window:MakeTab({
- Name = "Key",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- PlayerTab:AddTextbox({
- Name = "Enter Key",
- Default = "Here",
- TextDisappear = true,
- Callback = function(Value)
- _Get.KeyInput = Value
- end
- })
- PlayerTab:AddButton({
- Name = "Check Key",
- Callback = function()
- if _Get.KeyInput == _Get.Key then
- MakeScriptHub()
- CorrectKeyNotification()
- else
- IncorrectKeyNotification()
- end
- end
- })
- -- player tab
- local PlayerTab = Window:MakeTab({
- Name = "Player",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local MovementSection = PlayerTab:AddSection({
- Name = "Movement"
- })
- PlayerTab:AddSlider({
- Name = "Walkspeed",
- Min = 50,
- Max = 500,
- Default = 5,
- Color = Color3.fromRGB(255, 255, 255),
- Increment = 1,
- ValueName = "Speed",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
- end
- })
- PlayerTab:AddSlider({
- Name = "Jump Height",
- Min = 50,
- Max = 500,
- Default = 5,
- Color = Color3.fromRGB(255, 255, 255),
- Increment = 1,
- ValueName = "Height",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
- end
- })
- -- other tab
- local OtherTab = Window:MakeTab({
- Name = "Other",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local OtherSection = OtherTab:AddSection({
- Name = "Other"
- })
- OtherTab:AddButton({
- Name = "Delete Doors",
- Callback = function()
- game.Workspace.Doors:Destroy()
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment