Advertisement
exploit43262

Untitled

Aug 2nd, 2022
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "Car for adopt me made by Trigzzy#8305", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5. local Main = Window:MakeTab({
  6. Name = "Main",
  7. Icon = "rbxassetid://4483345998",
  8. PremiumOnly = false
  9. })
  10.  
  11. local Misc = Main:AddSection({
  12. Name = "Misc"
  13. })
  14.  
  15. local userName = ""
  16.  
  17. Main:AddTextbox({
  18. Name = "Teleport Vehicles (FE)",
  19. Default = "Username",
  20. TextDisappear = false,
  21. Callback = function(Value)
  22. userName = Value
  23. for i, v in pairs(game:GetService("Workspace")["MainMap/Default"]:GetDescendants()) do
  24. if v:IsA("Part") or v:IsA("MeshPart") and not v.Anchored then
  25. v.CFrame = game.Players[userName].Character.HumanoidRootPart.CFrame
  26. end
  27. end
  28. end
  29. })
  30.  
  31. local WalkSpeed = 0
  32. Main:AddSlider({
  33. Name = "WalkSpeed",
  34. Min = 0,
  35. Max = 200,
  36. Default = 16,
  37. Color = Color3.fromRGB(255,255,255),
  38. Increment = 1,
  39. ValueName = "",
  40. Callback = function(Value)
  41. WalkSpeed = Value
  42.  
  43. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  44. end
  45. })
  46.  
  47. local jumpPower = 0
  48. Main:AddSlider({
  49. Name = "JumpPower",
  50. Min = 0,
  51. Max = 200,
  52. Default = 50,
  53. Color = Color3.fromRGB(255,255,255),
  54. Increment = 1,
  55. ValueName = "",
  56. Callback = function(Value)
  57. jumpPower = Value
  58.  
  59. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  60. end
  61. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement