Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- By illremember#3799
- -- Important Variables
- commandPrefix = ";"
- adminRunning = true
- -- Important Short Variables
- gsPlayers = game:GetService("Players")
- gsWorkspace = game:GetService("Workspace")
- gsLighting = game:GetService("Lighting")
- gsReplicatedStorage = game:GetService("ReplicatedStorage")
- gsCoreGui = game:GetService("CoreGui")
- gsTween = game:GetService("TweenService")
- LP = gsPlayers.LocalPlayer
- Mouse = LP:GetMouse()
- CurrentGravity = gsWorkspace.Gravity
- CurrentWalkspeed = LP.Character.Humanoid.WalkSpeed
- CurrentJumppower = LP.Character.Humanoid.JumpPower
- CurrentHipheight = LP.Character.Humanoid.HipHeight
- function fullUpdate()
- commandPrefix = commandPrefix
- adminRunning = adminRunning
- end
- gsWorkspace.Camera.Changed:Connect(function()
- gsWorkspace.Camera.FieldOfView = 70
- end)
- -- Important Functions
- function view(plr)
- if plr.Character.Humanoid then
- gsWorkspace.CurrentCamera.CameraSubject = plr.Character.Humanoid
- else
- gsWorkspace.CurrentCamera.CameraSubject = plr.Character.Head
- end
- end
- function unlockWS()
- for i,part in pairs(gsWorkspace:GetDescendants()) do
- if part:IsA("Part") then
- part.Locked = false
- end
- end
- end
- function lockWS()
- for i,part in pairs(gsWorkspace:GetDescendants()) do
- if part:IsA("Part") then
- part.Locked = true
- end
- end
- end
- function FEGodmode()
- local changeview = false
- if gsWorkspace.CurrentCamera.CameraSubject == LP.Character.Humanoid or gsWorkspace.CurrentCamera.CameraSubject == LP.Character then
- changeview = true
- end
- LP.Character.Humanoid.Name = 1
- local l = LP.Character["1"]:Clone()
- l.Parent = LP.Character
- l.Name = "Humanoid"
- wait(0.1)
- LP.Character["1"]:Destroy()
- if changeview then
- game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character
- end
- LP.Character.Animate.Disabled = true
- wait(0.1)
- LP.Character.Animate.Disabled = false
- LP.Character.Humanoid.DisplayDistanceType = "None"
- end
- function RocketPropulsion(maxthrust,maxspeed,thrustp,targetplr,name)
- local l = Instance.new("RocketPropulsion")
- l.Parent = LP.Character.HumanoidRootPart
- l.CartoonFactor = 1
- l.MaxThrust = maxthrust
- l.MaxSpeed = maxspeed
- l.ThrustP = thrustp
- l.Name = name
- l.Target = targetplr.Character.HumanoidRootPart
- l:Fire()
- end
- function Notification(style, msg, length)
- if gsCoreGui:FindFirstChild("Notification") then
- gsCoreGui:FindFirstChild("Notification"):Destroy()
- end
- local info = "http://www.roblox.com/asset/?id=1281284684"
- local warning = "http://www.roblox.com/asset/?id=1281286925"
- if style == "info" then
- style = info
- elseif style == "warning" then
- style = warning
- end
- local Notification = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local IMAGE = Instance.new("ImageLabel")
- Notification.Name = "Notification"
- Notification.Parent = gsCoreGui
- Frame.Parent = Notification
- Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
- Frame.BackgroundTransparency = 0.20000000298023
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0, 0, -0.2, 0)
- Frame.Size = UDim2.new(1, 0, 0, 30)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Size = UDim2.new(1, 0, 1, 0)
- TextLabel.Font = Enum.Font.SourceSansLight
- TextLabel.Text = msg
- TextLabel.TextColor3 = Color3.new(0.905882, 0.905882, 0.905882)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- IMAGE.Parent = Frame
- IMAGE.BackgroundTransparency = 1
- IMAGE.Size = UDim2.new(0, 50, 0, 50)
- IMAGE.Position = UDim2.new(0.1, 0, 0, 0)
- IMAGE.Image = style
- Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", 1.5)
- wait(length)
- Frame:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
- wait(3.01)
- Notification:Destroy()
- end
- function hasTools()
- local a = false
- local b = false
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Tool") then
- if v ~= nil then
- a = true
- else
- a = false
- end
- end
- end
- for i,k in pairs(LP.Backpack:GetDescendants()) do
- if k:IsA("Tool") then
- if k ~= nil then
- b = true
- else
- b = false
- end
- end
- end
- return a or b
- end
- Compliments = {" is the coolest person in this server!", ", I really like your avatar!", ", I really want to be your friend!", " is truly amazing. Truly!", " is incredible!", ", you are my favourite here!!", ", I am complimenting you right now at this very moment.", " you are really awesome", " when will you be my friend!?", " is such a great person", " is a fantastic person!"}
- function complimentplr(player)
- local plrName = player.Name
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(plrName..Compliments[math.random(1, #Compliments)], "All")
- end
- function createINFO(player)
- local InfoGUIv2 = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Frame_2 = Instance.new("Frame")
- local infoguiCLOSE = Instance.new("TextButton")
- local Frame_3 = Instance.new("Frame")
- local playerName = Instance.new("TextLabel")
- local Frame_4 = Instance.new("Frame")
- local playerAvatar = Instance.new("ImageLabel")
- local playerAccAge = Instance.new("TextLabel")
- local playerId = Instance.new("TextLabel")
- local playerOs = Instance.new("TextLabel")
- local playerMembership = Instance.new("TextLabel")
- local Frame_5 = Instance.new("Frame")
- local Frame_6 = Instance.new("Frame")
- InfoGUIv2.Name = "InfoGUIv2"
- InfoGUIv2.Parent = gsCoreGui
- Frame.Parent = InfoGUIv2
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.BackgroundTransparency = 1
- Frame.BorderColor3 = Color3.new(0, 0, 0)
- Frame.ClipsDescendants = true
- Frame.Position = UDim2.new(0.45, 0, 1, 0)
- Frame.Size = UDim2.new(0, 265, 0, 302)
- Frame.ZIndex = -1
- Frame_2.Parent = Frame
- Frame_2.BackgroundColor3 = Color3.new(0.290196, 0, 0.447059)
- Frame_2.BorderSizePixel = 0
- Frame_2.Size = UDim2.new(0, 260, 0, 20)
- infoguiCLOSE.Name = "infoguiCLOSE"
- infoguiCLOSE.Parent = Frame_2
- infoguiCLOSE.BackgroundColor3 = Color3.new(1, 1, 1)
- infoguiCLOSE.BackgroundTransparency = 1
- infoguiCLOSE.BorderSizePixel = 0
- infoguiCLOSE.Position = UDim2.new(0, 230, 0, 0)
- infoguiCLOSE.Size = UDim2.new(0, 30, 0, 20)
- infoguiCLOSE.Font = Enum.Font.SourceSansBold
- infoguiCLOSE.Text = "X"
- infoguiCLOSE.TextColor3 = Color3.new(0.992157, 0.992157, 0.992157)
- infoguiCLOSE.TextSize = 20
- Frame_3.Parent = Frame
- Frame_3.BackgroundColor3 = Color3.new(0.482353, 0.121569, 0.635294)
- Frame_3.BorderSizePixel = 0
- Frame_3.Position = UDim2.new(0, 0, 0, 20)
- Frame_3.Size = UDim2.new(0, 260, 0, 40)
- playerName.Name = "playerName"
- playerName.Parent = Frame_3
- playerName.BackgroundColor3 = Color3.new(1, 1, 1)
- playerName.BackgroundTransparency = 1
- playerName.Position = UDim2.new(0, 10, 0, 5)
- playerName.Size = UDim2.new(0, 240, 0, 30)
- playerName.Font = Enum.Font.SourceSansLight
- playerName.Text = player.Name
- playerName.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
- playerName.TextScaled = true
- playerName.TextSize = 14
- playerName.TextWrapped = true
- Frame_4.Parent = Frame
- Frame_4.BackgroundColor3 = Color3.new(0.956863, 0.956863, 0.956863)
- Frame_4.BorderSizePixel = 0
- Frame_4.Position = UDim2.new(0, 0, 0, 60)
- Frame_4.Size = UDim2.new(0, 260, 0, 237)
- playerAvatar.Name = "playerAvatar"
- playerAvatar.Parent = Frame_4
- playerAvatar.BackgroundColor3 = Color3.new(1, 1, 1)
- playerAvatar.Position = UDim2.new(0, 85, 0, 10)
- playerAvatar.Size = UDim2.new(0, 85, 0, 85)
- playerAvatar.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=150&y=150&Format=Png&username="..player.Name
- playerAccAge.Name = "playerAccAge"
- playerAccAge.Parent = Frame_4
- playerAccAge.BackgroundColor3 = Color3.new(1, 1, 1)
- playerAccAge.BackgroundTransparency = 1
- playerAccAge.Position = UDim2.new(0, 5, 0, 101)
- playerAccAge.Size = UDim2.new(0, 250, 0, 30)
- playerAccAge.Font = Enum.Font.SourceSans
- playerAccAge.Text = "Account Age: "..player.AccountAge
- playerAccAge.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- playerAccAge.TextScaled = true
- playerAccAge.TextSize = 14
- playerAccAge.TextWrapped = true
- playerId.Name = "playerId"
- playerId.Parent = Frame_4
- playerId.BackgroundColor3 = Color3.new(1, 1, 1)
- playerId.BackgroundTransparency = 1
- playerId.Position = UDim2.new(0, 5, 0, 131)
- playerId.Size = UDim2.new(0, 250, 0, 30)
- playerId.Font = Enum.Font.SourceSans
- playerId.Text = "Account ID: "..player.UserId
- playerId.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- playerId.TextScaled = true
- playerId.TextSize = 14
- playerId.TextWrapped = true
- playerOs.Name = "playerOs"
- playerOs.Parent = Frame_4
- playerOs.BackgroundColor3 = Color3.new(1, 1, 1)
- playerOs.BackgroundTransparency = 1
- playerOs.Position = UDim2.new(0, 5, 0, 161)
- playerOs.Size = UDim2.new(0, 250, 0, 30)
- playerOs.Font = Enum.Font.SourceSansLight
- playerOs.Text = "Player OS: "..player.OsPlatform
- playerOs.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- playerOs.TextScaled = true
- playerOs.TextSize = 14
- playerOs.TextWrapped = true
- playerMembership.Name = "playerMembership"
- playerMembership.Parent = Frame_4
- playerMembership.BackgroundColor3 = Color3.new(1, 1, 1)
- playerMembership.BackgroundTransparency = 1
- playerMembership.Position = UDim2.new(0, 5, 0, 191)
- playerMembership.Size = UDim2.new(0, 250, 0, 30)
- playerMembership.Font = Enum.Font.SourceSansLight
- if player.MembershipType == Enum.MembershipType.None then
- playerMembership.Text = "No builder's club."
- elseif player.MembershipType == Enum.MembershipType.BuildersClub then
- playerMembership.Text = "Builder's club!"
- elseif player.MembershipType == Enum.MembershipType.TurboBuildersClub then
- playerMembership.Text = "Turbo Builder's club!"
- elseif player.MembershipType == Enum.MembershipType.OutrageousBuildersClub then
- playerMembership.Text = "Outrageous Builder's club!"
- end
- playerMembership.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- playerMembership.TextScaled = true
- playerMembership.TextSize = 14
- playerMembership.TextWrapped = true
- Frame_5.Parent = Frame
- Frame_5.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame_5.BackgroundTransparency = 0.69999998807907
- Frame_5.BorderColor3 = Color3.new(0, 0, 0)
- Frame_5.BorderSizePixel = 0
- Frame_5.ClipsDescendants = true
- Frame_5.Position = UDim2.new(0, 10, 0, 10)
- Frame_5.Selectable = true
- Frame_5.Size = UDim2.new(0, 255, 0, 292)
- Frame_5.ZIndex = -1
- Frame_6.Parent = Frame
- Frame_6.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame_6.BackgroundTransparency = 0.69999998807907
- Frame_6.BorderColor3 = Color3.new(0, 0, 0)
- Frame_6.BorderSizePixel = 0
- Frame_6.ClipsDescendants = true
- Frame_6.Position = UDim2.new(0, 8, 0, 8)
- Frame_6.Selectable = true
- Frame_6.Size = UDim2.new(0, 255, 0, 292)
- Frame_6.ZIndex = -1
- local closeGet = {}
- closeGet.Size = UDim2.new(0, 0, 0, 0)
- local openGet = {}
- openGet.Position = UDim2.new(0.45, 0, 0.45, 0)
- local closeFunction = gsTween:Create(Frame, TweenInfo.new(2, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), closeGet)
- local openFunction = gsTween:Create(Frame, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), openGet)
- infoguiCLOSE.MouseButton1Click:Connect(function()
- closeFunction:Play()
- Frame:TweenPosition((Frame.Position + UDim2.new(0, 265 / 2, 0, 302 / 2)), "InOut", "Sine", 2)
- wait(2.01)
- Frame:Destroy()
- end)
- openFunction:Play()
- local UserInputService = game:GetService("UserInputService")
- local dragging
- local dragInput
- local dragStart
- local startPos
- local function update(input)
- local delta = input.Position - dragStart
- local dragTime = 0.055
- local SmoothDrag = {}
- SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- local dragSmoothFunction = gsTween:Create(Frame, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
- dragSmoothFunction:Play()
- end
- Frame.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- dragging = true
- dragStart = input.Position
- startPos = Frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragging = false
- end
- end)
- end
- end)
- Frame.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- dragInput = input
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if input == dragInput and dragging and Frame.Size == UDim2.new(0, 265, 0, 302) then
- update(input)
- end
- end)
- end
- function clientSided()
- Notification("info", "This command is for the client (you) only, no one else can see!", 6)
- end
- local allCMDS = Instance.new("ScreenGui")
- local gotCMDS = Instance.new("Frame")
- local TopCMDSFrame = Instance.new("Frame")
- local CloseCMDSgui = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local ActualCMDS = Instance.new("ScrollingFrame")
- local TextLabel_2 = Instance.new("TextLabel")
- allCMDS.Name = "allCMDS"
- allCMDS.Parent = gsCoreGui
- gotCMDS.Name = "gotCMDS"
- gotCMDS.Parent = allCMDS
- gotCMDS.Active = true
- gotCMDS.BackgroundColor3 = Color3.new(1, 1, 1)
- gotCMDS.BackgroundTransparency = 1
- gotCMDS.Position = UDim2.new(0, 305, 0, 131)
- gotCMDS.Size = UDim2.new(0, 610, 0, 377)
- gotCMDS.Visible = false
- gotCMDS.Draggable = true
- TopCMDSFrame.Name = "TopCMDSFrame"
- TopCMDSFrame.Parent = gotCMDS
- TopCMDSFrame.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
- TopCMDSFrame.BorderSizePixel = 0
- TopCMDSFrame.Size = UDim2.new(1.05, 0, 0.0933236256, 0)
- CloseCMDSgui.Name = "CloseCMDSgui"
- CloseCMDSgui.Parent = TopCMDSFrame
- CloseCMDSgui.BackgroundColor3 = Color3.new(1, 0.298039, 0.298039)
- CloseCMDSgui.BorderSizePixel = 0
- CloseCMDSgui.Position = UDim2.new(0.934426248, 0, 0, 0)
- CloseCMDSgui.Size = UDim2.new(0.0655737668, 0, 1.00522876, 0)
- CloseCMDSgui.Font = Enum.Font.SourceSansBold
- CloseCMDSgui.Text = "X"
- CloseCMDSgui.TextColor3 = Color3.new(0.972549, 0.972549, 0.972549)
- CloseCMDSgui.TextSize = 40
- TextLabel.Parent = TopCMDSFrame
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.BorderSizePixel = 0
- TextLabel.Size = UDim2.new(0.385245889, 0, 1.00522876, 0)
- TextLabel.Font = Enum.Font.SourceSansLight
- TextLabel.Text = "Shattervast"
- TextLabel.TextColor3 = Color3.new(0.937255, 0.937255, 0.937255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- ActualCMDS.Name = "ActualCMDS"
- ActualCMDS.Parent = gotCMDS
- ActualCMDS.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
- ActualCMDS.BorderSizePixel = 0
- ActualCMDS.Position = UDim2.new(0, 0, 0.0930000022, 0)
- ActualCMDS.Size = UDim2.new(1.05, 0, 0.907000005, 0)
- ActualCMDS.CanvasSize = UDim2.new(0, 0, 8, 0)
- TextLabel_2.Parent = ActualCMDS
- TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_2.BackgroundTransparency = 1
- TextLabel_2.BorderSizePixel = 0
- TextLabel_2.Size = UDim2.new(0.975000024, 0, 10, 0)
- TextLabel_2.Font = Enum.Font.SourceSans
- TextLabel_2.Text = "print [msg] -- Prints a message to the developer console\nwarn [msg] -- Warns a message to the developer console\nsit -- Makes you sit\ngod -- Activates FE Godmode (breaks tools)\nview [plr] -- Changes your camera subject to another player\nunview -- Changes your camera back to your player\ngravity [num] -- Changes workspace gravity to [num]\nungravity -- Reverts workspace gravity to game's default\ngoto [plr] -- Teleports you to a player\nfecheck -- Checks whether the game is FE or not\nlockws -- Locks the whole workspace\nunlockws -- Unlocks the whole workspace\nnoclip -- Allows you to walk through walls and other objects\nclip -- Stops noclip, can collide\nfollow [plr] / [num] -- Makes you follow a player constantly, optional [num] for how far away to follow\nunfollow -- Stops you from following\nfling [plr] / [pow] -- Uses your character to fling a player, optional [pow] for how much power to put into the fling\nunfling -- Stops you from flinging\ntrail [plr] / [num] -- Makes you trail (walk infront) of a player constantly, optional [num] for how far away to trail\nuntrail -- Stops you from trailing\nannoy [plr] -- Loop teleports you to the player\nunannoy -- Stops loop teleporting you\nreset -- Resets your character\ngrespawn -- Respawns your character, best for use after FE godmode\nrespawn -- Respawns your character, best to use if grespawn fails to work\nspeed // ws [num] -- Changes your walkspeed (speed or ws) to [num]\njumppower // jp [num] -- Changes your jumppower (jumppower or jp) to [num]\nhipheight // hh [num] -- Changes your hipheight (hipheight or hh) to [num]\ndefault -- Changes your walkspeed, jumppower and hipheight back to normal\ncredits -- Displays admin credits (by illremember#3799)\nattach [plr] -- Attaches you to a player, tool required\nfly / [speed] -- Enables fly, optional [speed] for how fast to fly\nunfly -- Disables fly\nkill [plr] -- Kills a player, tool required\nbring [plr] -- Brings a player, tool required\nnaked -- Displays avatar body colours\nnolimbs -- Deletes all your arms and legs\nnoarms -- Deletes both your arms\nnolegs -- Deletes both your legs\nantikick [on/off] -- Blocks all remotes for antikick when on, disables when off\nblockremote [remote] / [service] -- Blocks a remote from firing, optional [service] for where the remote is located\nremotespy [on/off] -- Prints all remotes to developer console when on when fired, stops printing when off\nbang [plr] / [speed] -- Bangs a player, optional [speed] to set animation adjust speed\nunbang -- Stops bang player\nspam [msg] -- Spams [msg] in chat\nspamdelay [num] -- Sets how long to wait in between spamming\nunspam -- Stops spamming\ninfo [plr] -- Creates GUI with information about player account, shows Account age, membership and account ID\nage [plr] -- Chats account age of player\ninvisible -- Enables FE invisibility, by Timeless\nwalk [plr] -- Begins to make you loop walk towards player\nglitch [plr] / [num] -- Glitches a player, tool required, optional [num] for strength of glitch\ntp [plr] [plr] -- Teleports a player to another player, tool required\ngivetool [plr] / [tool] -- Gives your current equipped tool to player, optional [tool] to pick a tool by name from your inventory\ngivealltools [plr] -- Gives all tools currently equipped and in inventory to player\nblockhats -- Removes mesh of all accessories\nblocktool -- Removes mesh of currently equipped tool\norbit [plr] -- Begins to make you orbit around a player\npos -- Shows your current position\nsavepos -- Saves your current position\nloadpos -- Loads your current position from savepos\ntppos [num] [num] [num] -- Teleports you to position [num], [num], [num]\npmspam [plr] [msg] -- Makes you spam a player's pm with [msg]\nunpmspam -- Stops spamming a player's pm\nwsvis [num] -- Changes all parts in workspace to [num] transparency\nbringobj [obj] / [num] -- Brings an object in the workspace to you, optional [num] for how far away to bring object\ncbring [plr] -- Brings a player to you constantly on client\nuncbring -- Stops bringing a player to you on client\ncfreeze [plr] -- Freezes a player on your client\nuncfreeze / [plr] -- Unfreezes a player on your cleint\nunattach -- Unattaches you from a player\nreach [on/off] / [num] -- Activates/Deactivates reach for currently equipped tool, optional [num] for how long the reach should be\ndroptool / [tool] -- Drops a tool into the workspace, optional [tool] command for which tool to drop\ndrophats -- Drops all your accessories into the workspace\nhidecmdbar -- Hides the command bar\nshowcmdbar -- Shows the command bar\nprefix [key] -- Changes your prefix to [key] must be 1 character\nremoveinvis -- Removes all invisible parts in workspace\nremovefog -- Removes fog in lighting\nanimation [id/gui] / [speed] -- Makes you play an animation with [id], optional [speed] for adjusting animation speed OR [gui] to open Energize animation GUI\nbtools -- Gives you btools for deleting, copying and dragging (client side)\nesp [plr] -- Enables an esp for that player, credits to Infinite Yield\nunesp / [plr] -- Disables all esp, optional [plr] for disabling esp just for that player\ndice -- Chats you rolling a dice for 1, 2, 3, 4, 5 or 6\nrandom [min] [max] -- Chats you picking a random number between [min] and [max]\nclosegame -- Shutsdown/closes your game\nsavetool / [tool] -- Saves a tool to your player equipped, optional [tool] for which tool to save in your inventory\nloadtool / [tool] -- Loads a tool from your player, optional [tool] for which tool to load by name\nsavealltool -- Saves all tools in your character/inventory\nloadalltool -- Loads all tools in your player saved tools\nclicktp / [key] -- Enables click teleport, optional [key] to set a key instead of clicking\nclickdel / [key] -- Enables click delete part, optional [key] to set a key instead of clicking\nunclicktp -- Disables clicktp\nunclickdel -- Disables clickdel\noof -- Makes oof noises in the server\nchatlogs -- Opens up a chat log gui with options to print chat to developer console\nstopadmin -- Disables currently running admin completely\nfreecam / [speed] // fc [speed] -- Enables freecam (like flying but not in character), optional [speed] for how fast the freecam should go\nunfreecam -- Disables freecam\ngotofc -- Teleports you to current freecam position\ncmds -- Opens up this GUI with commands\nfullcredits -- Shows full individual credits for all help with the admin\nhotkey [key] [cmd] -- Creates a hotkey that executes [cmd] when [key] is pressed\nremovehotkey [key] -- Removes a hotkey with [key]\nremoveallhotkey -- Removes all current hotkeys for commands\nos [plr] -- Chats the current OS of a player\nspin [plr] -- Makes you spin with a player, tool required\nunspin -- Stops you spinning a player/teleporting to a player\nfctp [plr] -- Teleports your current freecam to a player's position\nexplorer -- Loads DEX explorer\nmaxzoom [num] -- Changes your max zoom distance\nstare [plr] -- Makes you constantly look towards the player\nunstare -- Stops the stare command\ntempgod -- Enables temporary FE Godmode, does not work everywhere, can use tools with it\nvoid [plr] -- Teleports a player to the void, tools required\nfreefall [plr] -- Makes you and a player free fall! tools required\nversion -- Gets the current admin's version\nshiftlockon -- Allows you the ability to shift lock if disabled\ncopychat [on/off] [plr] -- Makes you chat whatever the player chats at the same time\nnewattach [plr] -- Different attach method, requires 2 tools, no FE Godmode used\nnewkill [plr] -- Different kill method, requires 2 tools, no FE Godmode used\nnewbring [plr] -- Different bring method, requires 2 tools, no FE Godmode used\nspawn [ws/jp/hh/god] [num] -- Makes you spawn with [num] [ws/jp/hh]\nunspawn -- Stops you from spawning with certain walkspeed/jumppower/hipheight"
- TextLabel_2.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
- TextLabel_2.TextSize = 20
- TextLabel_2.TextWrapped = true
- TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
- TextLabel_2.TextYAlignment = Enum.TextYAlignment.Top
- CloseCMDSgui.MouseButton1Click:Connect(function()
- gotCMDS.Visible = false
- end)
- -- Command Execution
- LP.Chatted:Connect(function(chat)
- if adminRunning == true then
- run(chat)
- end
- end)
- function run(msg)
- msg = string.lower(msg)
- local cmdPrefix = string.match(msg,"^%"..commandPrefix)
- if cmdPrefix then
- msg = string.gsub(msg,"%"..cmdPrefix,"",1)
- local args = {}
- for arg in string.gmatch(msg,"[^%s]+") do
- table.insert(args,arg)
- end
- local cmdName = args[1]
- table.remove(args,1)
- local doCmd = Commands[cmdName]
- if doCmd ~= nil then
- doCmd(args)
- end
- end
- end
- -- Command bar
- local CommandBar = Instance.new("ScreenGui")
- local CMDBAR = Instance.new("Frame")
- local CMDBARText = Instance.new("TextBox")
- CommandBar.Name = "CommandBar"
- CommandBar.Parent = gsCoreGui
- CMDBAR.Name = "CMDBAR"
- CMDBAR.Parent = CommandBar
- CMDBAR.BackgroundColor3 = Color3.new(0.164706, 0.152941, 0.172549)
- CMDBAR.BorderSizePixel = 0
- CMDBAR.Position = UDim2.new(0.025, 0, 1, 0)
- CMDBAR.Size = UDim2.new(0, 270, 0, 35)
- CMDBARText.Name = "CMDBARText"
- CMDBARText.Parent = CMDBAR
- CMDBARText.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
- CMDBARText.BorderSizePixel = 0
- CMDBARText.Position = UDim2.new(0, 5, 0, 5)
- CMDBARText.Size = UDim2.new(0, 260, 0, 25)
- CMDBARText.Font = Enum.Font.SourceSansLight
- CMDBARText.Text = ""
- CMDBARText.TextColor3 = Color3.new(0.933333, 0.933333, 0.933333)
- CMDBARText.TextScaled = true
- CMDBARText.TextSize = 14
- CMDBARText.TextWrapped = true
- Mouse.KeyDown:connect(function(Key)
- if Key == string.lower(commandPrefix) then
- CMDBARText:CaptureFocus()
- CMDBAR:TweenPosition(UDim2.new(0.015, 0, 0.95, 0), "Out", "Elastic", 0.5, true)
- end
- end)
- CMDBARText.FocusLost:connect(function(enterPressed)
- CMDBAR:TweenPosition(UDim2.new(0.015, 0, 1, 0), "Out", "Quad", 0.5, true)
- if enterPressed then
- local cmdmsg = CMDBARText.Text
- CMDBARText.Text = ""
- if string.sub(cmdmsg, 1, 1) == commandPrefix then
- run(cmdmsg)
- else
- run(commandPrefix..cmdmsg)
- end
- end
- end)
- local Match = Instance.new("Frame")
- local Option1 = Instance.new("TextLabel")
- local Option2 = Instance.new("TextLabel")
- local Option3 = Instance.new("TextLabel")
- local Option4 = Instance.new("TextLabel")
- Match.Name = "Match"
- Match.Parent = CMDBAR
- Match.BackgroundColor3 = Color3.new(0.164706, 0.152941, 0.172549)
- Match.BorderSizePixel = 0
- Match.Position = UDim2.new(0,0,-1,0)
- Match.Size = UDim2.new(1, 0, 1,0)
- Match.Visible = false
- Option1.Name = "Option4"
- Option1.Parent = Match
- Option1.BackgroundColor3 = Color3.new(1, 1, 1)
- Option1.BackgroundTransparency = 1
- Option1.Position = UDim2.new(0, 0, 0, 0)
- Option1.Size = UDim2.new(1,0, 1,0)
- Option1.Font = Enum.Font.SourceSans
- Option1.Text = "kill [plr]"
- Option1.TextColor3 = Color3.new(0.952941, 0.952941, 0.952941)
- Option1.TextScaled = true
- Option1.TextSize = 14
- Option1.TextWrapped = true
- CMDBARText.Changed:Connect(function()
- if CMDBARText.Text ~= "" and CMDBARText.Text ~= commandPrefix then
- Match.Visible = true
- for i,cmdtext in pairs(CMDS) do
- if string.lower(cmdtext):sub(1, #CMDBARText.Text) == string.lower(CMDBARText.Text) then
- Option1.Text = cmdtext
- end
- end
- else
- Match.Visible = false
- end
- end)
- -- Chat
- local ChatLogsv2 = Instance.new("ScreenGui")
- local MainChatFrame = Instance.new("Frame")
- local Framess = Instance.new("Frame")
- local CloseChatGUI = Instance.new("TextButton")
- local Frame_2 = Instance.new("Frame")
- local PrintChat = Instance.new("TextButton")
- local Shadow1 = Instance.new("Frame")
- local Shadow2 = Instance.new("Frame")
- local ScrollingFrame = Instance.new("ScrollingFrame")
- ChatLogsv2.Name = "ChatLogsv2"
- ChatLogsv2.Parent = gsCoreGui
- MainChatFrame.Name = "MainChatFrame"
- MainChatFrame.Parent = ChatLogsv2
- MainChatFrame.BackgroundColor3 = Color3.new(1, 1, 1)
- MainChatFrame.BackgroundTransparency = 1
- MainChatFrame.Position = UDim2.new(0, 760, 0, 261)
- MainChatFrame.Size = UDim2.new(0, 525, 0, 337)
- MainChatFrame.Visible = false
- Framess.Parent = MainChatFrame
- Framess.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
- Framess.BorderSizePixel = 0
- Framess.Size = UDim2.new(0, 525, 0, 15)
- CloseChatGUI.Name = "CloseChatGUI"
- CloseChatGUI.Parent = Framess
- CloseChatGUI.BackgroundColor3 = Color3.new(1, 1, 1)
- CloseChatGUI.BackgroundTransparency = 1
- CloseChatGUI.BorderSizePixel = 0
- CloseChatGUI.Position = UDim2.new(0, 495, 0, 0)
- CloseChatGUI.Size = UDim2.new(0, 30, 0, 15)
- CloseChatGUI.Font = Enum.Font.SourceSansBold
- CloseChatGUI.Text = "X"
- CloseChatGUI.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
- CloseChatGUI.TextSize = 20
- Frame_2.Parent = MainChatFrame
- Frame_2.BackgroundColor3 = Color3.new(0.14902, 0.14902, 0.14902)
- Frame_2.BorderSizePixel = 0
- Frame_2.Position = UDim2.new(0, 0, 0, 15)
- Frame_2.Size = UDim2.new(0, 525, 0, 50)
- PrintChat.Name = "PrintChat"
- PrintChat.Parent = Frame_2
- PrintChat.BackgroundColor3 = Color3.new(0.870588, 0.25098, 0.25098)
- PrintChat.BorderSizePixel = 0
- PrintChat.Position = UDim2.new(0, 15, 0, 0)
- PrintChat.Size = UDim2.new(0, 170, 0, 30)
- PrintChat.Font = Enum.Font.SourceSansLight
- PrintChat.Text = "Print Chat"
- PrintChat.TextColor3 = Color3.new(0.960784, 0.960784, 0.960784)
- PrintChat.TextSize = 30
- PrintChat.TextWrapped = true
- Shadow1.Name = "Shadow1"
- Shadow1.Parent = MainChatFrame
- Shadow1.BackgroundColor3 = Color3.new(0, 0, 0)
- Shadow1.BackgroundTransparency = 0.5
- Shadow1.Position = UDim2.new(0, 2, 0, 2)
- Shadow1.Size = UDim2.new(0, 525, 0, 337)
- Shadow1.ZIndex = -1
- Shadow2.Name = "Shadow2"
- Shadow2.Parent = MainChatFrame
- Shadow2.BackgroundColor3 = Color3.new(0, 0, 0)
- Shadow2.BackgroundTransparency = 0.80000001192093
- Shadow2.Position = UDim2.new(0, 5, 0, 5)
- Shadow2.Size = UDim2.new(0, 525, 0, 337)
- Shadow2.ZIndex = -1
- ScrollingFrame.Parent = MainChatFrame
- ScrollingFrame.BackgroundColor3 = Color3.new(0.266667, 0.266667, 0.266667)
- ScrollingFrame.BorderSizePixel = 0
- ScrollingFrame.Position = UDim2.new(0, 0, 0, 65)
- ScrollingFrame.Size = UDim2.new(0, 525, 0, 271)
- ScrollingFrame.CanvasPosition = Vector2.new(0, 403)
- ScrollingFrame.ScrollBarThickness = 8
- function CreateChatText(plr, chat)
- for i,v in pairs(ScrollingFrame:GetDescendants()) do
- v.Position = v.Position - UDim2.new(0, 0, 0, 20)
- if v.Position == UDim2.new(0, 5, 0, 10) then
- v:Destroy()
- end
- end
- local Example = Instance.new("TextLabel")
- Example.Name = "Example"
- Example.Parent = ScrollingFrame
- Example.BackgroundColor3 = Color3.new(1, 1, 1)
- Example.BackgroundTransparency = 1
- Example.Position = UDim2.new(0, 5, 0, 650)
- Example.Size = UDim2.new(0, 500, 0, 20)
- Example.Font = Enum.Font.SourceSans
- Example.Text = "["..plr.Name.."]: "..chat
- Example.TextColor3 = Color3.new(0.960784, 0.960784, 0.960784)
- Example.TextScaled = true
- Example.TextSize = 20
- Example.TextWrapped = true
- Example.TextXAlignment = Enum.TextXAlignment.Left
- end
- CloseChatGUI.MouseButton1Click:Connect(function()
- MainChatFrame:TweenPosition(UDim2.new(0, 550, 0, -550), "InOut", "Sine", 2)
- wait(2.01)
- MainChatFrame.Visible = false
- end)
- printingChat = false
- PrintChat.MouseButton1Click:Connect(function()
- if printingChat == false then
- printingChat = true
- PrintChat.BackgroundColor3 = Color3.fromRGB(60, 200, 60)
- elseif printingChat == true then
- printingChat = false
- PrintChat.BackgroundColor3 = Color3.new(0.870588, 0.25098, 0.25098)
- end
- end)
- local UserInputService = game:GetService("UserInputService")
- local dragging
- local dragInput
- local dragStart
- local startPos
- local prevPosition = Vector2.new()
- prevPosition = ScrollingFrame.CanvasPosition
- function checkPos()
- if (prevPosition-ScrollingFrame.CanvasPosition).magnitude > 0 then
- return false
- else
- return true
- end
- end
- game:GetService("RunService"):BindToRenderStep("checkPos",0,checkPos)
- local function updateChat(input)
- local delta = input.Position - dragStart
- local dragTime = 0.055
- local SmoothDrag = {}
- SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- local dragSmoothFunction = gsTween:Create(MainChatFrame, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
- dragSmoothFunction:Play()
- end
- MainChatFrame.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
- if checkPos() == true then
- dragging = true
- dragStart = input.Position
- startPos = MainChatFrame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragging = false
- end
- end)
- end
- end
- end)
- MainChatFrame.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- dragInput = input
- end
- end)
- UserInputService.InputChanged:Connect(function(input)
- if input == dragInput and dragging then
- updateChat(input)
- end
- end)
- function printChat(player, chat)
- print("["..player.Name.."]: "..chat)
- end
- complimentReady = true
- for i,currentPlayersChatting in pairs(game:GetService("Players"):GetPlayers()) do
- currentPlayersChatting.Chatted:connect(function(chat)
- CreateChatText(currentPlayersChatting, chat)
- if printingChat then
- printChat(currentPlayersChatting, chat)
- end
- if copyingchat then
- if currentPlayersChatting == copychatplr then
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(chat, "All")
- end
- end
- if copyingchatall then
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(chat, "All")
- end
- if modeFling == true then
- if string.lower(string.sub(chat, 1, 7)) == "!fling " then
- if gsWorkspace:PGSIsEnabled() == false then
- FEGodmode()
- end
- if string.lower(string.sub(chat, 8)) == "me" then
- run(commandPrefix.."unfling")
- LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
- run(commandPrefix.."fling "..currentPlayersChatting.Name.." 2000000")
- else
- for i,notAll in pairs(findSinglePlayer(string.lower(string.sub(chat, 8)))) do
- if notAll ~= LP then
- run(commandPrefix.."unfling")
- LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
- run(commandPrefix.."fling "..notAll.Name.." 2000000")
- end
- end
- end
- end
- end
- if modeCompliment == true then
- if string.lower(string.sub(chat, 1, 3)) == "!c " then
- if complimentReady then
- complimentReady = false
- if string.lower(string.sub(chat, 4)) == "me" then
- complimentplr(currentPlayersChatting)
- else
- for i,Others in pairs(findSinglePlayer(string.lower(string.sub(chat, 4)))) do
- if Others == LP then
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Don't be silly, I can't compliment myself!", "All")
- else
- complimentplr(Others)
- end
- end
- end
- wait(1)
- complimentReady = true
- end
- end
- end
- end)
- end
- game:GetService("Players").PlayerAdded:connect(function(plr)
- plr.Chatted:connect(function(chat)
- CreateChatText(plr, chat)
- if printingChat then
- printChat(plr, chat)
- end
- if copyingchat then
- if plr == copychatplr then
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(chat, "All")
- end
- end
- if copyingchatall then
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(chat, "All")
- end
- if modeFling == true then
- if string.lower(string.sub(chat, 1, 7)) == "!fling " then
- if gsWorkspace:PGSIsEnabled() == false then
- FEGodmode()
- end
- if string.lower(string.sub(chat, 8)) == "me" then
- run(commandPrefix.."unfling")
- LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
- run(commandPrefix.."fling "..plr.Name.." 2000000")
- else
- for i,notAll in pairs(findSinglePlayer(string.lower(string.sub(chat, 8)))) do
- if notAll ~= LP then
- run(commandPrefix.."unfling")
- LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
- run(commandPrefix.."fling "..notAll.Name.." 2000000")
- end
- end
- end
- end
- end
- if modeCompliment == true then
- if string.lower(string.sub(chat, 1, 3)) == "!c " then
- if complimentReady == true then
- complimentReady = false
- if string.lower(string.sub(chat, 4)) == "me" then
- complimentplr(plr)
- else
- for i,Others in pairs(findSinglePlayer(string.lower(string.sub(chat, 4)))) do
- if Others == LP then
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Don't be silly, I can't compliment myself!", "All")
- else
- complimentplr(Others)
- end
- end
- end
- wait(1)
- complimentReady = true
- end
- end
- end
- end)
- end)
- -- Loops
- noclip = false
- following = false
- trailing = false
- annoying = false
- flingnoclip = false
- staring = false
- stopsitting = false
- stareplr = ""
- CBRINGamount = 3
- spawnWS = CurrentWalkspeed
- spawnJP = CurrentJumppower
- spawnHH = CurrentHipheight
- spawningfegod = false
- LPcurrenthumanoid = LP.Character.Humanoid
- game:GetService('RunService').Stepped:connect(function()
- if LP.Character.Humanoid then
- LPcurrenthumanoid = LP.Character.Humanoid
- end
- if noclip then
- if LP.Character then
- if LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
- LP.Character.Head.CanCollide = false
- LP.Character.Torso.CanCollide = false
- LP.Character["Left Leg"].CanCollide = false
- LP.Character["Right Leg"].CanCollide = false
- LP.Character["Left Arm"].CanCollide = false
- LP.Character["Right Arm"].CanCollide = false
- elseif LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
- LP.Character.Head.CanCollide = false
- LP.Character.UpperTorso.CanCollide = false
- LP.Character.LowerTorso.CanCollide = false
- LP.Character.HumanoidRootPart.CanCollide = false
- end
- end
- end
- if following then
- LP.Character.HumanoidRootPart.CFrame = gsPlayers[flwplr.Name].Character.HumanoidRootPart.CFrame + gsPlayers[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * flwnum
- end
- if trailing then
- LP.Character.HumanoidRootPart.CFrame = gsPlayers[trlplr.Name].Character.HumanoidRootPart.CFrame + gsPlayers[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * trlnum
- end
- if annoying then
- LP.Character.HumanoidRootPart.CFrame = gsPlayers[annplr.Name].Character.HumanoidRootPart.CFrame
- end
- if walkto then
- LP.Character.Humanoid:MoveTo(walkplr.Character.HumanoidRootPart.Position)
- end
- if cbringing then
- CBRINGplr.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * CBRINGamount
- end
- if cbringingall then
- for i,getbringplrs in pairs(gsPlayers:GetPlayers()) do
- if getbringplrs ~= LP then
- getbringplrs.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * CBRINGamount
- end
- end
- end
- if staring then
- LP.Character.HumanoidRootPart.CFrame = CFrame.new(LP.Character.Torso.Position, gsPlayers[stareplr.Name].Character.Torso.Position)
- end
- if stopsitting then
- LP.Character.Humanoid.Sit = false
- end
- end)
- LPcurrenthumanoid.Died:Connect(function()
- flying = false
- doFREECAM = false
- if savingtoolsloop then
- run(commandPrefix.."savealltool")
- end
- end)
- LP.CharacterAdded:Connect(function()
- wait(0.2)
- LP.Character.Humanoid.WalkSpeed = spawnWS
- LP.Character.Humanoid.JumpPower = spawnJP
- LP.Character.Humanoid.HipHeight = spawnHH
- if spawningfegod then
- FEGodmode()
- end
- if spawningpos and spawnpos ~= nil then
- LP.Character.HumanoidRootPart.CFrame = spawnpos
- end
- end)
- -- Commands
- Commands = {}
- CMDS = {
- "print [msg]",
- "warn [msg]",
- "sit",
- "god",
- "view [plr]",
- "unview",
- "gravity [num]",
- "ungravity",
- "goto [plr]",
- "fecheck", -- 10
- "lockws",
- "unlockws",
- "noclip",
- "clip",
- "follow [plr] / [num]",
- "unfollow",
- "fling [plr] / [pow]",
- "unfling",
- "trail [plr] / [num]",
- "untrail",
- "annoy [plr]",
- "unannoy",
- "reset",
- "grespawn",
- "respawn", -- 25
- "speed // ws [num]",
- "jumppower // jp [num]",
- "hipheight // hh [num]",
- "default",
- "credits",
- "attach [plr]",
- "fly / [speed]",
- "unfly",
- "kill [plr]",
- "bring [plr]",
- "naked",
- "nolimbs",
- "noarms",
- "nolegs", -- 39
- "antikick [on/off]",
- "blockremote [remote] / [service]",
- "remotespy [on/off]",
- "bang [plr] / [speed]",
- "unbang",
- "spam [msg]",
- "spamdelay [num]",
- "unspam",
- "info [plr]",
- "age [plr]",
- "invisible",
- "walk [plr]",
- "glitch [plr] / [num]",
- "tp [plr] [plr]",
- "givetool [plr] / [tool]", -- 53
- "givealltools [plr]",
- "blockhats",
- "blocktool",
- "orbit [plr]",
- "unorbit",
- "pos",
- "savepos",
- "loadpos",
- "tppos [num] [num] [num]",
- "pmspam [plr] [msg]",
- "unpmspam", --63
- "wsvis [num]",
- "bringobj [obj] / [num]",
- "cbring [plr] / [num]",
- "uncbring",
- "cfreeze [plr]", -- 68
- "uncfreeze / [plr]",
- "unattach",
- "reach [on/off] / [num]",
- "droptool / [tool]",
- "drophats", -- 73
- "hidecmdbar",
- "showcmdbar",
- "prefix [key]",
- "removeinvis",
- "removefog",
- "animation [id/gui] / [speed]",
- "btools",
- "esp [plr]", -- 81
- "unesp / [plr]",
- "dice",
- "random [min] [max]",
- "closegame",
- "savetool / [tool]",
- "loadtool / [tool]",
- "savealltool",
- "loadalltool",
- "clicktp / [key]",
- "clickdel / [key]",
- "unclicktp",
- "unclickdel",
- "oof",
- "chatlogs",
- "stopadmin", -- 96
- "freecam / [speed] // fc / [speed]",
- "unfreecam",
- "gotofc", -- 99
- "cmds",
- "fullcredits",
- "hotkey [key] [cmd]",
- "removehotkey [key]",
- "removeallhotkey",
- "printhotkeys",
- "os [plr]",
- "spin [plr]",
- "unspin",
- "fctp [plr]",
- "explorer",
- "maxzoom [num]",
- "stare [plr]",
- "unstare [plr]",
- "tempgod",
- "void [plr]",
- "freefall [plr]",
- "version", -- 118
- "shiftlockon",
- "copychat [on/off] [plr]",
- "newattach [plr]",
- "newkill [plr]",
- "newbring [plr]",
- "spawn [ws/jp/hh/god] [num]",
- "unspawn", -- 125
- "autosavetool [on/off]", -- 128
- "beginbot / [mode]",
- "endbot / [mode]", -- 130
- "stopsit",
- "gosit",
- "spawnpoint",
- "nospawn",
- }
- Commands.print = function(args)
- local msg = table.concat(args," ")
- print(msg)
- end
- Commands.warn = function(args)
- local msg = table.concat(args," ")
- warn(msg)
- end
- Commands.sit = function(args)
- LP.Character.Humanoid.Sit = true
- end
- Commands.god = function(args)
- FEGodmode()
- Notification("warning", "You have enabled FE Godmode, tools will not work. Use ;grespawn to remove.", 7)
- end
- Commands.view = function(args)
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- view(v)
- Notification("info", "Now viewing "..v.Name..". Use ;unview to stop viewing.", 3)
- end
- end
- end
- Commands.unview = function(args)
- view(LP)
- end
- Commands.gravity = function(args)
- if args[1] then
- gsWorkspace.Gravity = args[1]
- end
- end
- Commands.ungravity = function(args)
- gsWorkspace.Gravity = CurrentGravity
- end
- Commands.goto = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- LP.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
- end
- end
- end
- Commands.fecheck = function(args)
- if gsWorkspace.FilteringEnabled == true then
- Notification("warning", "FE is enabled!", 7)
- else
- Notification("warning", "FE is disabled. Consider using a different script.", 7)
- end
- end
- Commands.lockws = function(args)
- lockWS()
- Notification("info", "Workspace locked.", 4)
- end
- Commands.unlockws = function(args)
- unlockWS()
- Notification("info", "Workspace unlocked.", 4)
- end
- Commands.noclip = function(args)
- noclip = true
- Notification("info", "Noclip enabled.", 4)
- end
- Commands.clip = function(args)
- noclip = false
- Notification("info", "Noclip disabled.", 4)
- end
- Commands.follow = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- flwplr = v
- end
- if args[2] then
- flwnum = args[2]
- else
- flwnum = -5
- end
- following = true
- else
- Notification("warning", "No player selected to follow! Use: ;follow player", 4)
- end
- end
- Commands.unfollow = function(args)
- following = false
- end
- Commands.fling = function(args)
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- view(v)
- pcall(function()
- LP.Character.HumanoidRootPart.Fling:Destroy()
- end)
- if not args[2] then
- RocketPropulsion(800000,1000,400000,v,"Fling")
- else
- RocketPropulsion(args[2],1500,400000,v,"Fling")
- end
- if noclip ~= true then
- flingnoclip = true
- noclip = true
- end
- end
- else
- Notification("warning", "No player selected to fling! Use: ;fling player", 4)
- end
- end
- Commands.unfling = function(args)
- view(LP)
- pcall(function()
- if LP.Character.HumanoidRootPart.Fling then
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v.Name == "Fling" and v:IsA("RocketPropulsion") then
- v:Destroy()
- end
- end
- end
- end)
- if flingnoclip == true then
- noclip = false
- flingnoclip = false
- end
- end
- Commands.trail = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- trlplr = v
- end
- if args[2] then
- trlnum = args[2]
- else
- trlnum = 5
- end
- trailing = true
- else
- Notification("warning", "No player selected to trail! Use: ;trail player", 4)
- end
- end
- Commands.untrail = function(args)
- trailing = false
- end
- Commands.annoy = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- annplr = v
- end
- annoying = true
- else
- Notification("warning", "No player selected to annoy! Use: ;annoy player", 4)
- end
- end
- Commands.unannoy = function(args)
- annoying = false
- end
- Commands.reset = function(args)
- LP.Character:BreakJoints()
- end
- Commands.grespawn = function(args)
- LP.Character.Humanoid.Health = 0
- wait(1)
- LP.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
- LP.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
- end
- Commands.respawn = function(args)
- local mod = Instance.new('Model', workspace) mod.Name = 'new '..LP.Name
- local hum = Instance.new('Humanoid', mod)
- local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
- LP.Character = mod
- end
- Commands.speed = function(args)
- if args[1] then
- LP.Character.Humanoid.WalkSpeed = args[1]
- end
- end
- Commands.ws = function(args)
- if args[1] then
- LP.Character.Humanoid.WalkSpeed = args[1]
- end
- end
- Commands.jumppower = function(args)
- if args[1] then
- LP.Character.Humanoid.JumpPower = args[1]
- end
- end
- Commands.jp = function(args)
- if args[1] then
- LP.Character.Humanoid.JumpPower = args[1]
- end
- end
- Commands.hipheight = function(args)
- if args[1] then
- LP.Character.Humanoid.HipHeight = args[1]
- end
- end
- Commands.hh = function(args)
- if args[1] then
- LP.Character.Humanoid.HipHeight = args[1]
- end
- end
- Commands.default = function(args)
- LP.Character.Humanoid.WalkSpeed = CurrentWalkspeed
- LP.Character.Humanoid.HipHeight = CurrentHipheight
- LP.Character.Humanoid.JumpPower = CurrentJumppower
- end
- Commands.credits = function(args)
- Notification("info", "Shattervast was made by illremember#3799 , ;fullcredits for all credits.", 8)
- end
- Commands.attach = function(args)
- if hasTools() == false then
- Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
- else
- FEGodmode()
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
- wait(0.3)
- LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
- end
- end
- end
- end
- Commands.fly = function(args)
- local speedget = 1
- repeat wait() until LP and LP.Character and LP.Character:FindFirstChild('HumanoidRootPart') and LP.Character:FindFirstChild('Humanoid')
- repeat wait() until Mouse
- if args[1] then
- speedfly = args[1]
- else
- speedfly = 1
- end
- local T = LP.Character.HumanoidRootPart
- local CONTROL = {F = 0, B = 0, L = 0, R = 0}
- local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
- local SPEED = speedget
- local function fly()
- flying = true
- local BG = Instance.new('BodyGyro', T)
- local BV = Instance.new('BodyVelocity', T)
- BG.P = 9e4
- BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
- BG.cframe = T.CFrame
- BV.velocity = Vector3.new(0, 0.1, 0)
- BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
- spawn(function()
- repeat wait()
- LP.Character.Humanoid.PlatformStand = true
- if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
- SPEED = 50
- elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
- SPEED = 0
- end
- if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
- BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
- lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
- elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
- BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
- else
- BV.velocity = Vector3.new(0, 0.1, 0)
- end
- BG.cframe = workspace.CurrentCamera.CoordinateFrame
- until not flying
- CONTROL = {F = 0, B = 0, L = 0, R = 0}
- lCONTROL = {F = 0, B = 0, L = 0, R = 0}
- SPEED = 0
- BG:destroy()
- BV:destroy()
- LP.Character.Humanoid.PlatformStand = false
- end)
- end
- Mouse.KeyDown:connect(function(KEY)
- if KEY:lower() == 'w' then
- CONTROL.F = speedfly
- elseif KEY:lower() == 's' then
- CONTROL.B = -speedfly
- elseif KEY:lower() == 'a' then
- CONTROL.L = -speedfly
- elseif KEY:lower() == 'd' then
- CONTROL.R = speedfly
- end
- end)
- Mouse.KeyUp:connect(function(KEY)
- if KEY:lower() == 'w' then
- CONTROL.F = 0
- elseif KEY:lower() == 's' then
- CONTROL.B = 0
- elseif KEY:lower() == 'a' then
- CONTROL.L = 0
- elseif KEY:lower() == 'd' then
- CONTROL.R = 0
- end
- end)
- fly()
- end
- Commands.unfly = function(args)
- flying = false
- LP.Character.Humanoid.PlatformStand = false
- end
- Commands.kill = function(args)
- if hasTools() == false then
- Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
- else
- FEGodmode()
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- local NOW = LP.Character.HumanoidRootPart.CFrame
- LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
- wait(0.3)
- LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
- local function tp(player,player2)
- local char1,char2=player.Character,player2.Character
- if char1 and char2 then
- char1:MoveTo(char2.Head.Position)
- end
- end
- wait(0.5)
- LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(100000,0,100000))
- wait(0.5)
- tp(LP,game:GetService("Players")[v.Name])
- wait(0.7)
- LP.Character.HumanoidRootPart.CFrame = NOW
- end
- end
- end
- end
- Commands.bring = function(args)
- if hasTools() == false then
- Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
- else
- FEGodmode()
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- local NOW = LP.Character.HumanoidRootPart.CFrame
- local function tp(player,player2)
- local char1,char2=player.Character,player2.Character
- if char1 and char2 then
- char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
- end
- end
- local function getout(player,player2)
- local char1,char2=player.Character,player2.Character
- if char1 and char2 then
- char1:MoveTo(char2.Head.Position)
- end
- end
- tp(game:GetService("Players")[v.Name], LP)
- wait(0.2)
- tp(game:GetService("Players")[v.Name], LP)
- wait(0.5)
- LP.Character.HumanoidRootPart.CFrame = NOW
- wait(0.5)
- getout(LP, game:GetService("Players")[v.Name])
- wait(0.3)
- LP.Character.HumanoidRootPart.CFrame = NOW
- end
- end
- end
- end
- Commands.naked = function(args)
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Clothing") then
- v:Destroy()
- end
- end
- end
- Commands.nolimbs = function(args)
- LP.Character["Left Arm"]:Destroy()
- LP.Character["Right Arm"]:Destroy()
- LP.Character["Left Leg"]:Destroy()
- LP.Character["Right Leg"]:Destroy()
- end
- Commands.noarms = function(args)
- LP.Character["Left Arm"]:Destroy()
- LP.Character["Right Arm"]:Destroy()
- end
- Commands.nolegs = function(args)
- LP.Character["Left Leg"]:Destroy()
- LP.Character["Right Leg"]:Destroy()
- end
- Commands.headless = function(args)
- local l = LP.Character.Humanoid:Clone()
- LP.Character.Humanoid:Destroy()
- wait(0.2)
- LP.Character.Head.CanCollide = false
- for i,v in pairs(LP.Character:GetDescendants()) do
- if string.sub(v.Name, 1, 4) == "Neck" then
- v:Destroy()
- end
- end
- wait(0.2)
- l.Name = "Humanoid"
- l.Parent = LP.Character
- wait(0.1)
- game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character
- LP.Character.Animate:Destroy()
- end
- antiremotes = false
- Commands.antikick = function(args)
- if args[1] then
- if args[1] == "on" then
- antiremotes = true
- Notification("warning", "This command disables all remotes incase they are kick remotes, may break game.", 8)
- Notification("info", "Does not prevent serverside kicks, use ;antikick off to turn off.", 8)
- elseif args[1] == "off" then
- antiremotes = false
- Notification("warning", "Remote anti-kick turned off.", 8)
- end
- end
- end
- blockedremotes = {}
- Commands.blockremote = function(args)
- local getService = ""
- if args[1] then
- local remoteName = string.lower(tostring(args[1]))
- if args[2] then
- local serviceRemote = string.lower(tostring(args[2]))
- if serviceRemote == "workspace" then
- getService = "Workspace"
- elseif serviceRemote == "replicatedstorage" then
- getService = "ReplicatedStorage"
- elseif serviceRemote == "players" then
- getService = "Players"
- elseif serviceRemote == "lighting" then
- getService = "Lighting"
- elseif serviceRemote == "startergui" then
- getService = "StarterGui"
- elseif serviceRemote == "starterpack" then
- getService = "StarterPack"
- elseif serviceRemote == "starterplayer" then
- getService = "StarterPlayer"
- else
- getService = "ReplicatedStorage"
- end
- else
- getService = "ReplicatedStorage"
- end
- for i,getRemote in pairs(game:GetService(getService):GetDescendants()) do
- if string.lower(getRemote.Name) == remoteName then
- table.insert(blockedremotes, getRemote.Name)
- end
- end
- end
- Notification("warning", "If this command does not work, make sure you type remote name/service fully correct.", 8)
- end
- spyingremotes = false
- Commands.remotespy = function(args)
- if args[1] then
- if args[1] == "on" then
- spyingremotes = true
- Notification("info", "Remotespy turned on.", 4)
- elseif args[1] == "off" then
- spyingremotes = false
- Notification("info", "Remotespy turned off.", 4)
- end
- end
- end
- Commands.bang = function(args)
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- if v ~= nil then
- following = true
- flwplr = v
- flwnum = -1
- local bangAnimation = Instance.new("Animation")
- bangAnimation.AnimationId = "rbxassetid://148840371"
- bangTrack = LP.Character.Humanoid:LoadAnimation(bangAnimation)
- if args[2] then
- bangTrack:Play(.1, 1, args[2])
- else
- bangTrack:Play(.1, 1, 1)
- end
- end
- end
- else
- Notification("warning", "No player selected to follow! Use: ;follow player", 4)
- end
- end
- Commands.unbang = function(args)
- following = false
- bangTrack:Stop()
- end
- spamdelay = 1
- spamtext = "Spam"
- spamming = false
- Commands.spam = function(args)
- if args[1] then
- spamtext = args[1]
- spamming = true
- end
- end
- Commands.spamdelay = function(args)
- if args[1] then
- spamdelay = args[1]
- end
- end
- spawn(function()
- while wait(spamdelay) do
- if spamming then
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
- end
- end
- end)
- Commands.unspam = function(args)
- spamming = false
- end
- Commands.info = function(args)
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- createINFO(v)
- end
- end
- end
- Commands.age = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." Account Age: "..v.AccountAge.." days!", "All")
- end
- end
- end
- Commands.invisible = function(args)
- local Character = LP.Character
- if LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
- local Clone = Character.HumanoidRootPart:Clone()
- Character.HumanoidRootPart:Destroy()
- Clone.Parent = Character
- else
- local Clone = Character.LowerTorso.Root:Clone()
- Character.LowerTorso.Root:Destroy()
- Clone.Parent = Character.LowerTorso
- end
- end
- walkto = false
- walkplr = ""
- Commands.walk = function(args)
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- walkplr = v
- walkto = true
- noclip = true
- end
- end
- end
- Commands.unwalk = function(args)
- walkto = false
- noclip = false
- LP.Character.Humanoid:MoveTo(LP.Character.HumanoidRootPart.Position)
- end
- Commands.glitch = function(args)
- if hasTools() == false then
- Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
- else
- FEGodmode()
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- local function tp(player,player2)
- local char1,char2=player.Character,player2.Character
- if char1 and char2 then
- char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
- end
- end
- tp(game:GetService("Players")[v.Name], LP)
- wait(0.2)
- tp(game:GetService("Players")[v.Name], LP)
- wait(0.5)
- local b = Instance.new("BodyForce")
- b.Parent = LP.Character.HumanoidRootPart
- b.Name = "Glitch"
- if args[2] then
- b.Force = Vector3.new(args[2],5000,0)
- else
- b.Force = Vector3.new(100000000,5000,0)
- end
- wait(6)
- b:Destroy()
- end
- end
- end
- end
- Commands.tp = function(args)
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- if v == LP then
- if args[2] then
- for i,a in pairs(findSinglePlayer(args[2])) do
- v.Character.HumanoidRootPart.CFrame = a.Character.HumanoidRootPart.CFrame
- end
- end
- else
- if hasTools() == false then
- Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
- else
- FEGodmode()
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- if args[1] then
- for i,first in pairs(findSinglePlayer(args[1])) do
- if args[2] then
- for i,second in pairs(findSinglePlayer(args[2])) do
- local function tp(player,player2)
- local char1,char2=player.Character,player2.Character
- if char1 and char2 then
- char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
- end
- end
- local function getout(player,player2)
- local char1,char2=player.Character,player2.Character
- if char1 and char2 then
- char1:MoveTo(char2.Head.Position)
- end
- end
- tp(LP, first)
- wait(0.2)
- tp(LP, first)
- wait(0.5)
- tp(LP, second)
- wait(0.2)
- tp(LP, second)
- wait(0.2)
- getout(LP, first)
- end
- end
- end
- end
- end
- end
- end
- end
- end
- Commands.givetool = function(args)
- if args[1] then
- if args[2] then
- local selectedTool = ""
- for i,allTools in pairs(LP.Character:GetDescendants()) do
- if allTools:IsA("Tool") and string.lower(allTools.Name) == string.lower(args[2]) then
- selectedTool = allTools
- else
- for i,otherTools in pairs(LP.Backpack:GetDescendants()) do
- if otherTools:IsA("Tool") and string.lower(otherTools.Name) == string.lower(args[2]) then
- selectedTool = otherTools
- end
- end
- end
- end
- for i,v in pairs(findSinglePlayer(args[1])) do
- if selectedTool ~= "" then
- selectedTool.Parent = v.Character
- end
- end
- else
- for i,plr in pairs(findSinglePlayer(args[1])) do
- for i,tool in pairs(LP.Character:GetDescendants()) do
- if tool:IsA("Tool") then
- tool.Parent = plr.Character
- end
- end
- end
- end
- end
- end
- Commands.givealltools = function(args)
- LP.Character.Humanoid:UnequipTools()
- for i,plr in pairs(findSinglePlayer(args[1])) do
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Tool") then
- v.Parent = plr.Character
- end
- end
- for i,a in pairs(LP.Backpack:GetDescendants()) do
- if a:IsA("Tool") then
- a.Parent = plr.Character
- end
- end
- end
- end
- Commands.blockhats = function(args)
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Accessory") or v:IsA("Hat") then
- for i,mesh in pairs(v:GetDescendants()) do
- if mesh.Name == "Mesh" then
- mesh:Destroy()
- end
- end
- end
- end
- end
- Commands.blocktool = function(args)
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Tool") then
- for i,mesh in pairs(v:GetDescendants()) do
- if mesh.Name == "Mesh" then
- mesh:Destroy()
- end
- end
- end
- end
- end
- Commands.orbit = function(args)
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- view(v)
- RocketPropulsion(5000,100,5000,v,"OrbitMove")
- end
- else
- Notification("warning", "No player selected to orbit! Use: ;orbit player", 4)
- end
- end
- Commands.unorbit = function(args)
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v.Name == "OrbitMove" then
- v:Destroy()
- end
- end
- view(LP)
- end
- Commands.pos = function(args)
- Notification("info", "Your current position is ".. tostring(LP.Character.HumanoidRootPart.Position), 9)
- end
- SavedPosition = ""
- Commands.savepos = function(args)
- SavedPosition = LP.Character.HumanoidRootPart.CFrame
- end
- Commands.loadpos = function(args)
- if SavedPosition ~= "" then
- LP.Character.HumanoidRootPart.CFrame = SavedPosition
- end
- end
- Commands.tppos = function(args)
- if args[1] and args[2] and args[3] then
- LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(args[1], args[2], args[3]))
- end
- end
- Commands.pmspam = function(args)
- if args[1] then
- local gotPlayer = ""
- for i,v in pairs(findPlayer(args[1])) do
- gotPlayer = v
- end
- table.remove(args, 1)
- local pmSpamMsg = table.concat(args," ")
- spamtext = "/w "..gotPlayer.Name.." "..pmSpamMsg
- spamming = true
- end
- end
- Commands.unpmspam = function(args)
- spamming = false
- end
- Commands.wsvis = function(args)
- if args[1] then
- for i,v in pairs(gsWorkspace:GetDescendants()) do
- if v:IsA("Part") or v:IsA("Decal") then
- if tonumber(args[1]) > 1 then
- v.Transparency = 0.5
- else
- v.Transparency = args[1]
- end
- end
- end
- end
- clientSided()
- end
- Commands.bringobj = function(args)
- if args[1] then
- local Object = ""
- for i,v in pairs(gsWorkspace:GetDescendants()) do
- if string.lower(v.Name) == string.lower(args[1]) then
- Object = v
- end
- end
- if Object == "" then
- Notification("warning", "Object was not found in the workspace.", 6)
- end
- if args[2] then
- Object.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * args[2]
- else
- Object.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * 3
- end
- clientSided()
- end
- end
- CBRINGplr = ""
- cbringing = false
- cbringingall = false
- Commands.cbring = function(args)
- if args[1] then
- if string.lower(tostring(args[1])) == "all" or string.lower(tostring(args[1])) == "others" then
- cbringingall = true
- else
- for i,v in pairs(findPlayer(args[1])) do
- CBRINGplr = v
- cbringing = true
- end
- end
- if args[2] then
- CBRINGamount = args[2]
- else
- CBRINGamount = 3
- end
- clientSided()
- end
- end
- Commands.uncbring = function(args)
- cbringing = false
- cbringingall = false
- end
- Commands.cfreeze = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- v.Character.HumanoidRootPart.Anchored = true
- end
- clientSided()
- end
- end
- Commands.uncfreeze = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- v.Character.HumanoidRootPart.Anchored = false
- end
- else
- for i,all in pairs(gsPlayers:GetPlayers()) do
- all.Character.HumanoidRootPart.Anchored = false
- end
- end
- end
- Commands.unattach = function(args)
- local function getout(player,player2)
- local char1,char2=player.Character,player2.Character
- if char1 and char2 then
- char1:MoveTo(char2.Head.Position)
- end
- end
- getout(LP, LP)
- end
- currentToolSize = ""
- Commands.reach = function(args)
- if args[1] then
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Tool") then
- if string.lower(tostring(args[1])) == "off" then
- v.Handle.Size = currentToolSize
- v.Handle.SelectionBoxCreated:Destroy()
- LP.Character.Humanoid:UnequipTools()
- elseif string.lower(tostring(args[1])) == "on" then
- if args[2] then
- currentToolSize = v.Handle.Size
- local a = Instance.new("SelectionBox",v.Handle)
- a.Name = "SelectionBoxCreated"
- a.Adornee = v.Handle
- v.Handle.Size = Vector3.new(0.5,0.5,args[2])
- v.GripPos = Vector3.new(0,0,0)
- LP.Character.Humanoid:UnequipTools()
- else
- currentToolSize = v.Handle.Size
- local a = Instance.new("SelectionBox",v.Handle)
- a.Name = "SelectionBoxCreated"
- a.Adornee = v.Handle
- v.Handle.Size = Vector3.new(0.5,0.5,60)
- v.GripPos = Vector3.new(0,0,0)
- LP.Character.Humanoid:UnequipTools()
- end
- end
- end
- end
- end
- end
- Commands.droptool = function(args)
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Tool") then
- v.Parent = gsWorkspace
- end
- end
- for i,a in pairs(LP.Backpack:GetDescendants()) do
- if a:IsA("Tool") then
- a.Parent = gsWorkspace
- end
- end
- end
- Commands.drophats = function(args)
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Accessory") or v:IsA("Hat") then
- v.Parent = gsWorkspace
- end
- end
- end
- Commands.hidecmdbar = function(args)
- CMDBAR.Visible = false
- end
- Commands.showcmdbar = function(args)
- CMDBAR.Visible = true
- end
- Commands.prefix = function(args)
- if args[1] then
- commandPrefix = string.sub(tostring(args[1]), 1, 1)
- fullUpdate()
- end
- end
- Commands.removeinvis = function(args)
- for i,v in pairs(gsWorkspace:GetDescendants()) do
- if v:IsA("Part") and v.Name ~= "HumanoidRootPart" then
- if v.Transparency == 1 then
- v:Destroy()
- end
- end
- end
- clientSided()
- end
- Commands.removefog = function(args)
- gsLighting.FogStart = 0
- gsLighting.FogEnd = 9999999999999
- clientSided()
- end
- Commands.animation = function(args)
- if args[1] then
- if string.lower(tostring(args[1])) == "gui" then
- loadstring(game:HttpGet(("https://pastebin.com/raw/mdbTSP4d"),true))()
- else
- local Anim = Instance.new("Animation")
- Anim.AnimationId = "rbxassetid://".. tostring(args[1])
- local track = LP.Character.Humanoid:LoadAnimation(Anim)
- if args[2] then
- track:Play(.1, 1, args[2])
- else
- track:Play(.1, 1, 1)
- end
- end
- end
- end
- Commands.btools = function(args)
- local Clone_T = Instance.new("HopperBin",LP.Backpack)
- Clone_T.BinType = "Clone"
- local Destruct = Instance.new("HopperBin",LP.Backpack)
- Destruct.BinType = "Hammer"
- local Hold_T = Instance.new("HopperBin",LP.Backpack)
- Hold_T.BinType = "Grab"
- clientSided()
- end
- Commands.esp = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- local espPlayer = v
- for i,createESP in pairs(espPlayer.Character:GetDescendants()) do
- if createESP:IsA("Part") or createESP:IsA("MeshPart") then
- if createESP.Name ~= "HumanoidRootPart" and createESP.Name ~= "Handle" then
- local current = true
- local espBOX = Instance.new("BoxHandleAdornment")
- espBOX.Parent = gsCoreGui
- espBOX.Name = "rGET"..espPlayer.Name
- espBOX.Adornee = createESP
- espBOX.AlwaysOnTop = true
- espBOX.ZIndex = 0
- espBOX.Size = createESP.Size
- espBOX.Transparency = 0.3
- local AboveHead = Instance.new("BillboardGui")
- AboveHead.Parent = gsCoreGui
- AboveHead.Adornee = espPlayer.Character.Head
- AboveHead.Name = "rGET"..espPlayer.Name
- AboveHead.Size = UDim2.new(0, 100, 0, 100)
- AboveHead.StudsOffset = Vector3.new(0, 1, 0)
- AboveHead.AlwaysOnTop = true
- local Info = Instance.new("TextLabel")
- Info.Parent = AboveHead
- Info.BackgroundTransparency = 1
- Info.Position = UDim2.new(0, 0, 0, 0)
- Info.Size = UDim2.new(1, 0, 0, 40)
- Info.TextColor3 = Color3.fromRGB(200,200,200)
- Info.TextStrokeTransparency = 0.5
- Info.TextSize = 15
- if espPlayer.TeamColor == LP.TeamColor then
- espBOX.Color = BrickColor.new("Lime green")
- Info.TextStrokeColor3 = Color3.fromRGB(10,100,10)
- else
- espBOX.Color = BrickColor.new("Really red")
- Info.TextStrokeColor3 = Color3.fromRGB(100,10,10)
- end
- game:GetService('RunService').Stepped:connect(function()
- if current and LP.Character.Humanoid and espPlayer.Character.HumanoidRootPart then
- Info.Text = espPlayer.Name.." (".. math.floor((LP.Character.HumanoidRootPart.Position - espPlayer.Character.HumanoidRootPart.Position).magnitude)..")"
- end
- end)
- espPlayer.Character.Humanoid.Died:Connect(function()
- current = false
- espBOX:Destroy()
- AboveHead:Destroy()
- end)
- gsPlayers.PlayerRemoving:Connect(function(plr)
- if plr == espPlayer then
- current = false
- espBOX:Destroy()
- AboveHead:Destroy()
- end
- end)
- end
- end
- end
- end
- clientSided()
- end
- end
- Commands.unesp = function(args)
- if not args[1] then
- for i,v in pairs(gsCoreGui:GetDescendants()) do
- if string.sub(v.Name, 1, 4) == "rGET" then
- v:Destroy()
- end
- end
- else
- for i,v in pairs(gsCoreGui:GetDescendants()) do
- if string.sub(v.Name, 1, 4) == "rGET" then
- for i,a in pairs(findPlayer(args[1])) do
- if string.sub(v.Name, 5) == a.Name then
- v:Destroy()
- end
- end
- end
- end
- end
- end
- Commands.dice = function(args)
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("You rolled a dice for ".. tostring(math.random(1, 6)), "All")
- end
- Commands.random = function(args)
- if args[1] and args[2] then
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Picking random number between "..args[1].." and "..args[2].."... The number is ".. tostring(math.random(args[1], args[2])), "All")
- end
- end
- Commands.closegame = function(args)
- game:Shutdown()
- end
- Commands.savetool = function(args)
- if args[1] then
- for i,a in pairs(LP.Character:GetDescendants()) do
- if a:IsA("Tool") and string.lower(a.Name) == string.lower(tostring(args[1])) then
- a.Parent = LP
- local oldName = a.Name
- a.Name = "saved "..oldName
- else
- for i,n in pairs(LP.Backpack:GetDescendants()) do
- if n:IsA("Tool") and string.lower(n.Name) == string.lower(tostring(args[1])) then
- n.Parent = LP
- local sOldName = n.Name
- n.Name = "saved "..sOldName
- end
- end
- end
- end
- else
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Tool") then
- v.Parent = LP
- local oldName = v.Name
- v.Name = "saved "..oldName
- end
- end
- end
- end
- Commands.loadtool = function(args)
- if args[1] then
- for i,a in pairs(LP:GetChildren()) do
- if a:IsA("Tool") and string.sub(a.Name, 1, 5) == "saved" and string.lower(string.sub(a.Name, 7)) == string.lower(tostring(args[1])) then
- a.Parent = LP.Backpack
- local currentName = a.Name
- a.Name = string.sub(currentName, 7)
- end
- end
- else
- for i,v in pairs(LP:GetChildren()) do
- if string.sub(v.Name, 1, 5) == "saved" then
- v.Parent = LP.Backpack
- local currentName = v.Name
- v.Name = string.sub(currentName, 7)
- end
- end
- end
- end
- Commands.savealltool = function(args)
- for i,v in pairs(LP.Character:GetDescendants()) do
- if v:IsA("Tool") then
- v.Parent = LP
- local oldName = v.Name
- v.Name = "saved "..oldName
- end
- end
- for i,v in pairs(LP.Backpack:GetDescendants()) do
- if v:IsA("Tool") then
- v.Parent = LP
- local oldName = v.Name
- v.Name = "saved "..oldName
- end
- end
- end
- Commands.loadalltool = function(args)
- for i,v in pairs(LP:GetChildren()) do
- if v:IsA("Tool") and string.sub(v.Name, 1, 5) == "saved" then
- v.Parent = LP.Backpack
- local currentName = v.Name
- v.Name = string.sub(currentName, 7)
- end
- end
- end
- Mouse.KeyDown:Connect(function(key)
- if key == clicktpKEY and clicktpACTIVE == true then
- if Mouse.Target then
- LP.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z)
- end
- end
- if key == clickdelKEY and clickdelACTIVE == true then
- if Mouse.Target then
- Mouse.Target:Destroy()
- end
- end
- end)
- Mouse.Button1Down:Connect(function()
- if clicktpACTIVE == true and clicktpCLICK == true then
- if Mouse.Target then
- LP.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z)
- end
- end
- if clickdelACTIVE == true and clickdelCLICK == true then
- if Mouse.Target then
- Mouse.Target:Destroy()
- end
- end
- end)
- clicktpKEY = ""
- clickdelKEY = ""
- clicktpACTIVE = false
- clickdelACTIVE = false
- clicktpCLICK = false
- clickdelCLICK = false
- Commands.clicktp = function(args)
- if args[1] then
- clicktpKEY = string.sub(tostring(args[1]), 1, 1)
- clicktpACTIVE = true
- clicktpCLICK = false
- else
- clicktpKEY = ""
- clicktpACTIVE = true
- clicktpCLICK = true
- end
- clientSided()
- end
- Commands.clickdel = function(args)
- if args[1] then
- clickdelKEY = string.sub(tostring(args[1]), 1, 1)
- clickdelACTIVE = true
- clickdelCLICK = false
- else
- clickdelKEY = ""
- clickdelACTIVE = true
- clickdelCLICK = true
- end
- clientSided()
- end
- Commands.unclicktp = function(args)
- clicktpACTIVE = false
- end
- Commands.unclickdel = function(args)
- clickdelACTIVE = false
- end
- Commands.oof = function(args)
- spawn(function()
- while wait() do
- for i,v in pairs(game:GetService'Players':GetPlayers()) do
- if v.Character ~= nil and v.Character:FindFirstChild'Head' then
- for _,x in pairs(v.Character.Head:GetChildren()) do
- if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true) end
- end
- end
- end
- end
- end)
- end
- Commands.chatlogs = function(args)
- MainChatFrame.Position = UDim2.new(0, 760, 0, 261)
- MainChatFrame.Visible = true
- end
- Commands.stopadmin = function(args)
- commandPrefix = " "
- fullUpdate()
- following = false
- trailing = false
- annoying = false
- CMDBAR.Visible = false
- Match.Visible = false
- flying = false
- end
- Commands.freecam = function(args)
- for i,getFC in pairs(gsWorkspace:GetDescendants()) do
- if getFC.Name == "rGETpartNUMBER2" then
- getFC:Destroy()
- end
- end
- local CameraPart = Instance.new("Part")
- CameraPart.CanCollide = false
- CameraPart.CFrame = LP.Character.Head.CFrame
- CameraPart.Locked = true
- CameraPart.Transparency = 1
- CameraPart.Size = Vector3.new(1, 1, 1)
- CameraPart.Parent = gsWorkspace
- CameraPart.Name = "rGETpartNUMBER2"
- gsWorkspace.CurrentCamera.CameraSubject = CameraPart
- local speedget = 1
- local T = CameraPart
- local CONTROL = {F = 0, B = 0, L = 0, R = 0}
- local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
- local SPEED = speedget
- if args[1] then
- speedfly = tonumber(args[1])
- else
- speedfly = 1
- end
- local function freecamfly()
- LP.Character.Head.Anchored = true
- doFREECAM = true
- local BG = Instance.new('BodyGyro', T)
- local BV = Instance.new('BodyVelocity', T)
- BG.P = 9e4
- BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
- BG.cframe = T.CFrame
- BV.velocity = Vector3.new(0, 0.1, 0)
- BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
- spawn(function()
- repeat wait()
- if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
- SPEED = 50
- elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
- SPEED = 0
- end
- if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
- BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
- lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
- elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
- BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
- else
- BV.velocity = Vector3.new(0, 0.1, 0)
- end
- BG.cframe = workspace.CurrentCamera.CoordinateFrame
- until not doFREECAM
- CONTROL = {F = 0, B = 0, L = 0, R = 0}
- lCONTROL = {F = 0, B = 0, L = 0, R = 0}
- SPEED = 0
- BG:destroy()
- BV:destroy()
- end)
- end
- Mouse.KeyDown:connect(function(KEY)
- if KEY:lower() == 'w' then
- CONTROL.F = speedfly
- elseif KEY:lower() == 's' then
- CONTROL.B = -speedfly
- elseif KEY:lower() == 'a' then
- CONTROL.L = -speedfly
- elseif KEY:lower() == 'd' then
- CONTROL.R = speedfly
- end
- end)
- Mouse.KeyUp:connect(function(KEY)
- if KEY:lower() == 'w' then
- CONTROL.F = 0
- elseif KEY:lower() == 's' then
- CONTROL.B = 0
- elseif KEY:lower() == 'a' then
- CONTROL.L = 0
- elseif KEY:lower() == 'd' then
- CONTROL.R = 0
- end
- end)
- freecamfly()
- end
- Commands.fc = function(args)
- if args[1] then
- run(commandPrefix.."freecam "..args[1])
- else
- run(commandPrefix.."freecam")
- end
- end
- Commands.unfreecam = function(args)
- doFREECAM = false
- LP.Character.Head.Anchored = false
- view(LP)
- if gsWorkspace.rGETpartNUMBER2 then
- gsWorkspace.rGETpartNUMBER2:Destroy()
- end
- end
- Commands.gotofc = function(args)
- doFREECAM = false
- LP.Character.Head.Anchored = false
- view(LP)
- pcall(function()
- LP.Character.HumanoidRootPart.CFrame = gsWorkspace.rGETpartNUMBER2.CFrame
- gsWorkspace.rGETpartNUMBER2:Destroy()
- end)
- end
- Commands.fctp = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- pcall(function()
- gsWorkspace.rGETpartNUMBER2.CFrame = v.Character.Head.CFrame
- end)
- end
- end
- end
- Commands.cmds = function(args)
- gotCMDS.Visible = true
- end
- Commands.fullcredits = function(args)
- Notification("info", "Credit to Autumn, Josh and 3dsboy08 (Help with ;remotespy and anti client kick)", 1)
- Notification("info", "Credit to Infinite Yield developers (Assisted in ;esp and ;fly commands)", 1)
- Notification("info", "Credit to Timeless (;invisible) and Harkinian (;shutdown)", 1)
- Notification("info", "Credit to DEX creators (;explorer) and xFunnieuss", 1)
- end
- hotkeys = {}
- Commands.hotkey = function(args)
- if args[1] then
- local hotkeyKEY = string.sub(tostring(args[1]), 1, 1)
- if args[2] then
- table.remove(args, 1)
- local hotkeyCMD = table.concat(args, " ")
- table.insert(hotkeys, hotkeyCMD.."//"..hotkeyKEY)
- Notification("info", "Hotkey added!", 1)
- end
- end
- end
- Mouse.KeyDown:Connect(function(key)
- for i,v in pairs(hotkeys) do
- if key == string.sub(v, #v, #v) then
- local commandtoRUN = string.match(v, "^[%w%s]+")
- if string.sub(string.lower(tostring(commandtoRUN)), 1, 3) == "fly" then
- if flying == false then
- run(commandPrefix..tostring(commandtoRUN))
- else
- run(commandPrefix.."unfly")
- end
- elseif tostring(commandtoRUN) == "noclip" then
- if noclip == false then
- run(commandPrefix..tostring(commandtoRUN))
- else
- run(commandPrefix.."clip")
- end
- else
- run(commandPrefix..tostring(commandtoRUN))
- end
- end
- end
- end)
- Commands.removeallhotkey = function(args)
- hotkeys = {}
- Notification("warning", "All hotkeys reset/removed", 6)
- end
- Commands.removehotkey = function(args)
- if args[1] then
- for i,v in pairs(hotkeys) do
- if string.sub(v, #v, #v) == string.sub(tostring(args[1]), 1, 1) then
- table.remove(hotkeys, i)
- end
- end
- end
- end
- Commands.printhotkeys = function(args)
- for i,v in pairs(hotkeys) do
- warn("HOTKEYS:")
- print(v)
- end
- end
- Commands.os = function(args)
- if args[1] then
- for i,v in pairs(findPlayer(args[1])) do
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." is on "..v.OsPlatform, "All")
- end
- end
- end
- spinning = false
- Commands.spin = function(args)
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- run(commandPrefix.."attach "..v.Name)
- annplr = v
- annoying = true
- spinning = true
- end
- end
- end
- Commands.unspin = function(args)
- if spinning then
- annoying = false
- spinning = false
- end
- run(";unattach")
- end
- Commands.explorer = function(args)
- loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
- Notification("info", "Loaded DEX explorer!", 5)
- end
- Commands.maxzoom = function(args)
- if args[1] then
- LP.CameraMaxZoomDistance = args[1]
- end
- end
- Commands.stare = function(args)
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- stareplr = v
- staring = true
- end
- end
- end
- Commands.unstare = function(args)
- staring = false
- end
- Commands.tempgod = function(args)
- local hu = LP.Character.Humanoid
- local l = Instance.new("Humanoid")
- l.Parent = LP.Character
- l.Name = "Humanoid"
- wait(0.1)
- hu.Parent = LP
- gsWorkspace.CurrentCamera.CameraSubject = LP.Character
- LP.Character.Animate.Disabled = true
- wait(0.1)
- LP.Character.Animate.Disabled = false
- Notification("info", "Enabled Temp FE Godmode", 4)
- end
- Commands.void = function(args)
- if hasTools() == false then
- Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
- else
- FEGodmode()
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- local NOW = LP.Character.HumanoidRootPart.CFrame
- LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
- wait(0.3)
- LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
- local function tp(player,player2)
- local char1,char2=player.Character,player2.Character
- if char1 and char2 then
- char1:MoveTo(char2.Head.Position)
- end
- end
- wait(0.5)
- LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(999999999999999,0,999999999999999))
- end
- end
- end
- end
- Commands.freefall = function(args)
- if hasTools() == false then
- Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
- else
- FEGodmode()
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- if args[1] then
- for i,v in pairs(findSinglePlayer(args[1])) do
- local NOW = LP.Character.HumanoidRootPart.CFrame
- LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
- wait(0.3)
- LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
- wait(0.5)
- LP.Character.HumanoidRootPart.CFrame = NOW
- wait(0.5)
- LP.Character.HumanoidRootPart.CFrame = NOW
- wait(0.6)
- LP.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
- end
- end
- end
- end
- Commands.version = function(args)
- Notification("info", "Current Shattervast Version: V2.15", 7)
- end
- Commands.shiftlockon = function(args)
- LP.DevEnableMouseLock = true
- Notification("info", "Shift lock enabled!", 5)
- end
- copyingchat = false
- copychatplr = ""
- copyingchatall = false
- Commands.copychat = function(args)
- if args[1] then
- if string.lower(tostring(args[1])) == "on" then
- if args[2] then
- if string.lower(tostring(args[2])) == "all" or "others" then
- copyingchatall = true
- Notification("info", "Copying all player's chats", 5)
- else
- for i,v in pairs(findPlayer(args[2])) do
- if v ~= LP then
- copychatplr = v
- copyingchat = true
- Notification("info", "Now copying chat of "..copychatplr.Name, 5)
- end
- end
- end
- end
- elseif string.lower(tostring(args[1])) == "off" then
- copyingchat = false
- copyingchatall = false
- Notification("info", "Stopped copying chat", 5)
- end
- end
- end
- Commands.newkill = function(args)
- if hasTools() == false then
- Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
- else
- if args[1] then
- for i,plr in pairs(findSinglePlayer(args[1])) do
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- for i,v in pairs(LP.Backpack:GetDescendants()) do
- if v:IsA("Tool") then
- v.Parent = LP.Character
- wait()
- v.Parent = plr.Character
- end
- end
- wait(0.4)
- LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(4000000, -10, 200000))
- end
- end
- end
- end
- Commands.newattach = function(args)
- if hasTools() == false then
- Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
- else
- if args[1] then
- for i,plr in pairs(findSinglePlayer(args[1])) do
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- for i,v in pairs(LP.Backpack:GetDescendants()) do
- if v:IsA("Tool") then
- v.Parent = LP.Character
- wait()
- v.Parent = plr.Character
- end
- end
- end
- end
- end
- end
- Commands.newbring = function(args)
- if hasTools() == false then
- Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
- else
- if args[1] then
- for i,plr in pairs(findSinglePlayer(args[1])) do
- local NOW = LP.Character.HumanoidRootPart.CFrame
- for i,v in pairs(LP.Backpack:GetChildren())do
- LP.Character.Humanoid:EquipTool(v)
- end
- for i,v in pairs(LP.Backpack:GetDescendants()) do
- if v:IsA("Tool") then
- v.Parent = LP.Character
- wait()
- v.Parent = plr.Character
- end
- end
- wait(0.4)
- LP.Character.HumanoidRootPart.CFrame = NOW
- wait(0.4)
- LP.Character.HumanoidRootPart.CFrame = NOW
- end
- end
- end
- end
- Commands.spawn = function(args)
- if args[1] then
- if string.lower(tostring(args[1])) == "ws" then
- spawnWS = args[2] or CurrentWalkspeed
- LP.Character.Humanoid.WalkSpeed = args[2] or CurrentWalkspeed
- elseif string.lower(tostring(args[1])) == "jp" then
- spawnJP = args[2] or CurrentJumppower
- LP.Character.Humanoid.JumpPower = args[2] or CurrentJumppower
- elseif string.lower(tostring(args[1])) == "hh" then
- spawnHH = args[2] or CurrentHipheight
- LP.Character.Humanoid.HipHeight = args[2] or CurrentHipheight
- elseif string.lower(tostring(args[1])) == "god" then
- spawningfegod = true
- FEGodmode()
- end
- end
- end
- Commands.unspawn = function(args)
- spawnWS = CurrentWalkspeed
- spawnJP = CurrentJumppower
- spawnHH = CurrentHipheight
- spawningfegod = false
- Notification("info", "Reset spawning stats", 5)
- end
- savingtoolsloop = false
- Commands.autosavetool = function(args)
- if args[1] then
- if string.lower(tostring(args[1])) == "on" then
- savingtoolsloop = true
- elseif string.lower(tostring(args[1])) == "off" then
- savingtoolsloop = false
- end
- end
- end
- modeFling = false
- modeCompliment = false
- Commands.beginbot = function(args)
- if not args[1] then
- print("fling // compliment")
- Notification("info", ";beginbot Modes printed", 5)
- else
- if string.lower(tostring(args[1])) == "fling" then
- modeFling = true
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hello! I am Fling-Bot 5000! Say !fling [Player] to fling that player!", "All")
- elseif string.lower(tostring(args[1])) == "compliment" then
- modeCompliment = true
- complimentReady = true
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Good day, I am Compliment-Bot. Say !c [Player] to give them a compliment.", "All")
- end
- end
- end
- Commands.endbot = function(args)
- if not args[1] then
- modeFling = false
- modeCompliment = false
- else
- if string.lower(tostring(args[1])) == "fling" then
- modeFling = false
- elseif string.lower(tostring(args[1])) == "compliment" then
- modeCompliment = false
- end
- end
- end
- Commands.stopsit = function(args)
- stopsitting = true
- end
- Commands.gosit = function(args)
- stopsitting = false
- end
- chattingerror = true
- Commands.chaterror = function(args)
- if chattingerror then
- chattingerror = false
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
- wait(4)
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
- wait(3)
- chattingerror = true
- end
- end
- spawnpos = nil
- spawningpos = true
- Commands.spawnpoint = function(args)
- spawnpos = LP.Character.HumanoidRootPart.CFrame
- spawningpos = true
- Notification("info", "Spawn point has been set! Use ;nospawn to remove.", 6)
- end
- Commands.nospawn = function(args)
- spawningpos = false
- Notification("info", "Spawn point has been removed. Use ;spawnpoint to enable.", 6)
- end
- -- findPlayer function (ALL, OTHERS, ME, NOOBS, VETERANS, OLDVETERANS, FRIENDS, NOFRIENDS, DEFAULT, RANDOM, TEAM, NOTEAM, OTHERTEAM)
- function findPlayer(plr)
- local players = {}
- local find = plr:lower()
- local getAllNames = getmultipleplayers(find)
- for i,mplr in pairs(getAllNames) do
- if mplr == "all" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- table.insert(players,v)
- end
- elseif mplr == "others" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if v.Name ~= LP.Name then
- table.insert(players,v)
- end
- end
- elseif mplr == "me" then
- table.insert(players,LP)
- elseif mplr == "noobs" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if v.AccountAge <= 3 then
- table.insert(players,v)
- end
- end
- elseif mplr == "veterans" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if v.AccountAge >= 365 then
- table.insert(players,v)
- end
- end
- elseif mplr == "oldveterans" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if v.AccountAge >= 1500 then
- table.insert(players,v)
- end
- end
- elseif mplr == "friends" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if v:IsFriendsWith(LP.UserId) and v.Name ~= LP.Name then
- table.insert(players,v)
- end
- end
- elseif mplr == "nofriends" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if not v:IsFriendsWith(LP.UserId) and v.Name ~= LP.Name then
- table.insert(players,v)
- end
- end
- elseif mplr == "default" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if v.Character:FindFirstChild("Pal Hair") or v.Character:FindFirstChild("Kate Hair") then
- table.insert(players,v)
- end
- end
- elseif mplr == "random" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- table.insert(players,v[math.random(1, #v)])
- end
- elseif mplr == "team" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if v.Team == LP.Team then
- table.insert(players,v)
- end
- end
- elseif mplr == "noteam" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if v.Team == nil then
- table.insert(players,v)
- end
- end
- elseif mplr == "otherteam" then
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if v.Team ~= LP.Team then
- table.insert(players,v)
- end
- end
- else
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if string.lower(v.Name):sub(1, #mplr) == string.lower(mplr) then
- table.insert(players,v)
- end
- end
- end
- end
- return players
- end
- function getmultipleplayers(plr)
- local plrsgotten = {}
- for i in string.gmatch(plr,"[^,]+") do
- table.insert(plrsgotten,i)
- end
- return plrsgotten
- end
- function findSinglePlayer(plr)
- local players = {}
- local find = plr:lower()
- if find == "me" then
- table.insert(players,LP)
- else
- for i,v in pairs(gsPlayers:GetPlayers()) do
- if string.lower(v.Name):sub(1, #find) == string.lower(find) then
- table.insert(players,v)
- end
- end
- end
- local oneplayer = {}
- table.insert(oneplayer, players[math.random(1, #players)])
- return oneplayer
- end
- -- Anti Kick
- if getrawmetatable then
- function formatargs(getArgs,v)
- if #getArgs == 0 then
- return ""
- end
- local collectArgs = {}
- for k,v in next,getArgs do
- local argument = ""
- if type(v) == "string" then
- argument = "\""..v.."\""
- elseif type(v) == "table" then
- argument = "{" .. formatargs(v,true) .. "}"
- else
- argument = tostring(v)
- end
- if v and type(k) ~= "number" then
- table.insert(collectArgs,k.."="..argument)
- else
- table.insert(collectArgs,argument)
- end
- end
- return table.concat(collectArgs, ", ")
- end
- kicknum = 0
- local game_meta = getrawmetatable(game)
- local game_namecall = game_meta.__namecall
- local w = (setreadonly or fullaccess or make_writeable)
- pcall(w, game_meta, false)
- game_meta.__namecall = function(out, ...)
- if adminRunning then
- local args = {...}
- local Method = args[#args]
- args[#args] = nil
- if Method == "Kick" then
- kicknum = kicknum + 1
- warn("Blocked client-kick attempt "..kicknum)
- return
- end
- if antiremotes then
- if Method == "FireServer" or Method == "InvokeServer" then
- if out.Name ~= "CharacterSoundEvent" and out.Name ~= "SayMessageRequest" and out.Name ~= "AddCharacterLoadedEvent" and out.Name ~= "RemoveCharacterEvent" and out.Name ~= "DefaultServerSoundEvent" and out.Parent ~= "DefaultChatSystemChatEvents" then
- warn("Blocked remote: "..out.Name.." // Method: "..Method)
- return
- end
- end
- else
- if Method == "FireServer" or Method == "InvokeServer" then
- for i,noremote in pairs(blockedremotes) do
- if out.Name == noremote and out.Name ~= "SayMessageRequest" then
- warn("Blocked remote: "..out.Name.." // Method: "..Method)
- return
- end
- end
- end
- end
- if spyingremotes then
- if Method == "FireServer" or Method == "InvokeServer" then
- if out.Name ~= "CharacterSoundEvent" and out.Name ~= "AddCharacterLoadedEvent" and out.Name ~= "RemoveCharacterEvent" and out.Name ~= "DefaultServerSoundEvent" and out.Name ~= "SayMessageRequest" then
- local arguments = {}
- for i = 1,#args do
- arguments[i] = args[i]
- end
- local getScript = getfenv(2).script
- if getScript == nil then
- getScript = "??? (Not Found) ???"
- end
- warn("<> <> <> A "..out.ClassName.." has been fired! How to fire:\ngame."..out:GetFullName()..":"..Method.."("..formatargs(arguments)..")\n\nFired from script: ".. tostring(getScript:GetFullName()))
- end
- end
- end
- return game_namecall(out, ...)
- end
- end
- end
- -- FE Check
- if gsWorkspace.FilteringEnabled == true then
- Notification("warning", "FE is enabled! Press "..commandPrefix.." to bring Command Bar.", 7)
- else
- Notification("warning", "FE is disabled. Consider using a different script.", 7)
- end
Advertisement
Add Comment
Please, Sign In to add comment