Advertisement
7alexv7

Get eaten! script

Dec 11th, 2022 (edited)
3,553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.53 KB | Gaming | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local player = game.Players.LocalPlayer
  3. local InfiniteJumpEnabled = false
  4. local guys = game.workspace.Giants:GetChildren()
  5. local autoGetEaten = false
  6. OrionLib:MakeNotification({
  7.     Name = "Hey",
  8.     Content = "Script made by AlexvPlays",
  9.     Image = "rbxassetid://4483345998",
  10.     Time = 2
  11. })
  12. local Window = OrionLib:MakeWindow({Name = "Get Eaten! script", HidePremium = true, SaveConfig = true, ConfigFolder = "OrionTest"})
  13. local Tab = Window:MakeTab({
  14.     Name = "Main",
  15.     Icon = "rbxassetid://4483345998",
  16.     PremiumOnly = false
  17. })
  18. Tab:AddLabel("You must unlock the slide to get points from it!")
  19. for _,guy in guys do
  20.     Tab:AddButton({
  21.         Name = "Complete "..guy.Name,
  22.         Callback = function()
  23.             for _,thing in workspace.Slides:FindFirstChild(guy.Name):GetChildren() do
  24.                 if thing:IsA("Part") then
  25.                     player.Character:FindFirstChild("HumanoidRootPart").CFrame = CFrame.new(thing.Position) + Vector3.new(0, 0.8, 0)
  26.                 end
  27.             end
  28.             player.Character:FindFirstChild("HumanoidRootPart").CFrame = CFrame.new(workspace.Giants[guy.Name]:FindFirstChild("Head").Position)
  29.             wait(1)
  30.             player.Character.Humanoid:TakeDamage(100)
  31.         end    
  32.     })
  33. end
  34. local Tab = Window:MakeTab({
  35.     Name = "Local player",
  36.     Icon = "rbxassetid://4483345998",
  37.     PremiumOnly = false
  38. })
  39. Tab:AddSlider({
  40.     Name = "Speed",
  41.     Min = 1,
  42.     Max = 120,
  43.     Default = 16,
  44.     Color = Color3.fromRGB(255,255,255),
  45.     Increment = 1,
  46.     ValueName = "walkspeed",
  47.     Callback = function(Value)
  48.         player.Character.Humanoid.WalkSpeed = Value
  49.     end    
  50. })
  51. Tab:AddSlider({
  52.     Name = "Jump power",
  53.     Min = 1,
  54.     Max = 180,
  55.     Default = 30,
  56.     Color = Color3.fromRGB(255,255,255),
  57.     Increment = 1,
  58.     ValueName = "jumppower",
  59.     Callback = function(Value)
  60.         player.Character.Humanoid.JumpPower = Value
  61.     end    
  62. })
  63. Tab:AddButton({
  64.     Name = "Infinite jump!",
  65.     Callback = function()
  66.         InfiniteJumpEnabled = true
  67.     end    
  68. })
  69. game:GetService("UserInputService").JumpRequest:connect(function()
  70.     if InfiniteJumpEnabled then
  71.         game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  72.         wait()
  73.     end
  74. end)
  75. local Tab = Window:MakeTab({
  76.     Name = "Options",
  77.     Icon = "rbxassetid://4483345998",
  78.     PremiumOnly = false
  79. })
  80. Tab:AddButton({
  81.     Name = "Destroy GUI",
  82.     Callback = function()
  83.         OrionLib:Destroy()
  84.     end    
  85. })
  86. Tab:AddParagraph("Made by Alexv. Find me on:",
  87. "Youtube: AlexvPlays\nRoblox: AL3xvPlays\nDiscord: 7alexv7#9554")
  88. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement