Advertisement
xtrey10x

Auto Simpsons Script

Oct 30th, 2022
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. local PlayList = {}
  2. for i,v in pairs(game:GetService("Workspace").Creatures:GetChildren()) do
  3. if v ~= game.Players.LocalPlayer then
  4. table.insert(PlayList,v.Name)
  5. end
  6. end
  7.  
  8. _G.AutoPlayer = true
  9.  
  10. function AutoPlayer()
  11. while _G.AutoPlayer == true do
  12. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Creatures[xdvalue].CFrame
  13. wait()
  14. end
  15. end
  16.  
  17. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  18. local Window = OrionLib:MakeWindow({Name = "find the simsons", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  19. local Tab = Window:MakeTab({
  20. Name = "Main",
  21. Icon = "rbxassetid://4483345998",
  22. PremiumOnly = false
  23. })
  24.  
  25.  
  26. Tab:AddToggle({
  27. Name = "Auto Npc",
  28. Default = false,
  29. Callback = function(Value)
  30. print(Value)
  31. _G.AutoPlayer = Value
  32. AutoPlayer()
  33. end
  34. })
  35.  
  36. Tab:AddDropdown({
  37. Name = "Select npc",
  38. Default = "None",
  39. Options = PlayList,
  40. Callback = function(ok)
  41. print(ok)
  42. xdvalue = ok
  43.  
  44. end
  45. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement