Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local PlayList = {}
- for i,v in pairs(game:GetService("Workspace").Creatures:GetChildren()) do
- if v ~= game.Players.LocalPlayer then
- table.insert(PlayList,v.Name)
- end
- end
- _G.AutoPlayer = true
- function AutoPlayer()
- while _G.AutoPlayer == true do
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Creatures[xdvalue].CFrame
- wait()
- end
- end
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "find the simsons", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- local Tab = Window:MakeTab({
- Name = "Main",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab:AddToggle({
- Name = "Auto Npc",
- Default = false,
- Callback = function(Value)
- print(Value)
- _G.AutoPlayer = Value
- AutoPlayer()
- end
- })
- Tab:AddDropdown({
- Name = "Select npc",
- Default = "None",
- Options = PlayList,
- Callback = function(ok)
- print(ok)
- xdvalue = ok
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement