local function Run() local Players=game:GetService("Players") local ReplicatedStorage=game:GetService("ReplicatedStorage") local TeleportService=game:GetService("TeleportService") local LocalPlayer=Players.LocalPlayer local Clipboard=setclipboard or (Clipboard and Clipboard.set) local RequestCommand pcall(function() RequestCommand=ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommandSilent end) local Rayfield=loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window=Rayfield:CreateWindow({Name="Player GUI",LoadingTitle="don't delete my thomas",LoadingSubtitle="credits to: testingaccount1136",ConfigurationSaving={Enabled=false}}) local function GetPlayers() local t={} for _,p in ipairs(Players:GetPlayers()) do if p~=LocalPlayer then table.insert(t,p.Name) end end return t end local function Cmd(cmd) if not RequestCommand then return end local ok=pcall(function() RequestCommand:InvokeServer(cmd) end) if not ok then Rayfield:Notify({Title="Permission Denied",Content="your rank is below owner",Duration=2}) end end local MainTab=Window:CreateTab("Main",4483362458) MainTab:CreateButton({Name="Hello World",Callback=function()print("hello world")end}) local SpeedTab=Window:CreateTab("Speed",4483362458) local speedValue=16 SpeedTab:CreateInput({Name="WalkSpeed",PlaceholderText="Enter speed",RemoveTextAfterFocusLost=false,Callback=function(v)speedValue=tonumber(v)or 16 end}) SpeedTab:CreateButton({Name="Set Speed",Callback=function()LocalPlayer.Character:WaitForChild("Humanoid").WalkSpeed=speedValue end}) local JumpTab=Window:CreateTab("Jump",4483362458) local jumpValue=50 JumpTab:CreateInput({Name="Jump Power",PlaceholderText="Enter jump power",RemoveTextAfterFocusLost=false,Callback=function(v)jumpValue=tonumber(v)or 50 end}) JumpTab:CreateButton({Name="Set Jump Power",Callback=function()local h=LocalPlayer.Character:WaitForChild("Humanoid") h.UseJumpPower=true h.JumpPower=jumpValue end}) local TeleportTab=Window:CreateTab("Teleport",4483362458) local xVal,yVal,zVal=0,0,0 local SelectedPlayer TeleportTab:CreateInput({Name="X",PlaceholderText="X",RemoveTextAfterFocusLost=false,Callback=function(v)xVal=tonumber(v)or 0 end}) TeleportTab:CreateInput({Name="Y",PlaceholderText="Y",RemoveTextAfterFocusLost=false,Callback=function(v)yVal=tonumber(v)or 0 end}) TeleportTab:CreateInput({Name="Z",PlaceholderText="Z",RemoveTextAfterFocusLost=false,Callback=function(v)zVal=tonumber(v)or 0 end}) TeleportTab:CreateButton({Name="Teleport To Coordinates",Callback=function()local c=LocalPlayer.Character if c and c.PrimaryPart then c:SetPrimaryPartCFrame(CFrame.new(xVal,yVal,zVal)) end end}) TeleportTab:CreateDropdown({Name="Select Player",Options=GetPlayers(),CurrentOption=nil,Callback=function(v)SelectedPlayer=v[1] end}) TeleportTab:CreateButton({Name="Teleport To Player",Callback=function()if not SelectedPlayer then return end local t=Players:FindFirstChild(SelectedPlayer) if t and t.Character and LocalPlayer.Character then local hrp=LocalPlayer.Character:FindFirstChild("HumanoidRootPart") local thrp=t.Character:FindFirstChild("HumanoidRootPart") if hrp and thrp then hrp.CFrame=thrp.CFrame+Vector3.new(0,3,0) end end end}) TeleportTab:CreateButton({Name="Refresh Player List",Callback=function()Rayfield:Destroy() task.wait() Run() end}) local CmdTab=Window:CreateTab("CmdBar2",4483362458) local commandText="" local history={} local historyIndex=0 CmdTab:CreateInput({Name="Command",PlaceholderText=";kill all",RemoveTextAfterFocusLost=false,Callback=function(v)commandText=v end}) CmdTab:CreateButton({Name="Execute",Callback=function()if commandText~="" then Cmd(commandText) table.insert(history,1,commandText) if #history>30 then table.remove(history) end historyIndex=0 end end}) CmdTab:CreateButton({Name="Previous Command",Callback=function()if history[historyIndex+1] then historyIndex+=1 commandText=history[historyIndex] Rayfield:Notify({Title="CmdBar",Content=commandText,Duration=1}) end end}) local GearTab=Window:CreateTab("Gear",4483362458) local GearTarget="me" GearTab:CreateDropdown({Name="Give Gear To",Options={"me","others","all","selected"},CurrentOption={"me"},Callback=function(v)GearTarget=v[1] end}) local gearList={ {"Fuse Bomb","11563251"}, {"Ban Hammer","10468797"}, {"Gun","95354288"}, {"Timmy Gun","116693764"}, {"Hyperlaser Gun","130113146"}, {"Doge","257810065"}, {"Mad Murder Knife","170897263"}, {"Rainbow Periastron Omega","159229806"}, {"Chartreuse Periastron","80661504"}, {"Crimson Periastron","99119240"}, {"Azure Periastron","69499437"}, {"Noir Periastron Psi","120307951"}, {"Ivory Periastron","108158379"}, {"Grimgold Periastron","73829193"}, {"Amethyst Periastron","93136802"}, {"Festive Periastron","139577901"}, {"Joyful Periastron","233520257"}, {"Fall Periastron","2544549379"}, {"Fake Chartreuse Periastron","80597060"}, {"Book","49491736"}, {"Game","58574445"}, {"8-Bit Pumpkin Launcher","1132887630"}, {"Frying Pan","24346755"}, {"Balloon","430066424"}, {"Snowball","19328185"}, {"Watermelon","22787248"}, {"Monster Mash Potion","36042821"}, {"Treehouse","119917513"}, {"Dance Grenade","65545955"}, {"Taxi","125013849"}, {"Cake","107458461"}, {"Laser","115377964"}, {"C4","104642566"}, {"Bubblegum","11895536"}, {"Geolocator","15668963"}, {"Raig Table","110789105"}, {"Space Sword","566780253"}, {"Water Balloon","29100443"}, {"Sauce","31314931"}, {"Potion Purple","154727251"}, {"Paint Can","18474459"}, {"Banana Peel","29100449"}, {"Powerful Paintbrush","2261478942"}, {"Bloxiade","17237662"}, {"Inglaciator 6000","185422055"}, {"Blackhole Ray Gun","78005009"}, {"Mechatronic Spider","116040789"}, {"ALS Ice Bucket Challenge","173751087"} } for _,gear in ipairs(gearList) do GearTab:CreateButton({Name=gear[1].." : "..gear[2],Callback=function() local target=GearTarget if target=="selected" then if not SelectedPlayer then return end target=SelectedPlayer end Cmd(";gear "..target.." "..gear[2]) if Clipboard then Clipboard(tostring(gear[2])) end end}) end local UtilityTab=Window:CreateTab("Utility",4483362458) UtilityTab:CreateButton({Name="Reset Character",Callback=function()LocalPlayer.Character:BreakJoints()end}) UtilityTab:CreateButton({Name="Rejoin Server",Callback=function()TeleportService:Teleport(game.PlaceId,LocalPlayer)end}) end Run()