Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Made By FinestDerp
- Edited By tonyhawk63739
- Unfortunatly you have to type out the usernames fully
- and with everything capitalized :/
- [--Commands:--]
- -ls <- executes localscripts from chat
- -kill <- kills specified player
- -kick <- kicks specified player
- -ff <- gives forcefield to specified player
- -unff <- takes forcefield from specified player
- -ws <- YOU ONLY changes walkspeed of localplayer
- -jh <- YOU ONLY changes jumpheight of localplayer
- -god <- makes specified player unkillable
- -ungod <- makes specified player killable
- -sgod <- makes player silent god
- -pepe <- gives pepe particles to all players in game
- -aparticle <- puts YOUR IMAGE particles on all parts in workspace
- -particle <- gives YOUR IMAGE particles to all players in game
- -nigel <- gives nigel particles to all players in game
- -trump <- gives trump particles to all players in game
- -anon <- gives anonymous particles to all players in game
- -face <- changes YOUR face to selected IMAGE
- --]]
- game.Players.LocalPlayer.Chatted:connect(function(msgg)
- local msg = msgg
- if msg:sub(1,3) == "/e " then
- msg = msg:sub(4)
- end
- if msg:sub(1,4):lower() == "-ls " then
- loadstring(msg:sub(5))()
- end
- if msg:sub(1,6):lower() == "-kill " then
- game.Workspace[""..msg:sub(7)]:BreakJoints()
- end
- if msg:sub(1,6):lower() == "-kick " then
- game.Workspace[""..msg:sub(7)]:Remove()
- end
- if msg:sub(1,4):lower() == "-ff " then
- Instance.new("ForceField", game.Workspace[""..msg:sub(5)])
- end
- if msg:sub(1,6):lower() == "-unff " then
- game.Workspace[""..msg:sub(7)].ForceField:Remove()
- end
- if msg:sub(1,4):lower() == "-ws " then
- game.Workspace[""..game.Players.LocalPlayer.Name].Humanoid.WalkSpeed = ""..msg:sub(5)
- end
- if msg:sub(1,4):lower() == "-jh " then
- game.Workspace[""..game.Players.LocalPlayer.Name].Humanoid.JumpPower = ""..msg:sub(5)
- end
- if msg:sub(1,5):lower() == "-god " then
- game.Workspace[""..msg:sub(6)].Humanoid.MaxHealth = math.huge
- end
- if msg:sub(1,6):lower() == "-sgod " then
- game.Workspace[""..msg:sub(7)].Humanoid.MaxHealth = 1000000
- game.Workspace[""..msg:sub(7)].Humanoid.Health = 1000000
- end
- if msg:sub(1,7):lower() == "-ungod " then
- game.Workspace[""..msg:sub(8)].Humanoid.MaxHealth = 100
- end
- if msg:sub(1,6):lower() == "-pepe" then
- for i, v in pairs(game.Players:GetChildren()) do
- emit = Instance.new("ParticleEmitter")
- emit.Parent = v.Character.Torso
- emit.Texture = "http://www.roblox.com/asset/?id=292916914"
- emit.VelocitySpread = 20
- end
- end
- if msg:sub(1,11):lower() == "-aparticle " then
- for Get,Workspace in ipairs(game.Workspace:GetChildren()) do
- ParticleEmitter = Instance.new("ParticleEmitter");
- ParticleEmitter.Texture = ("http://www.roblox.com/asset/?id="..msg:sub(12));
- ParticleEmitter.Parent = Workspace;
- ParticleEmitter.VelocitySpread = 20
- end
- end
- if msg:sub(1,6):lower() =="-nigel" then
- for i, v in pairs(game.Players:GetChildren()) do
- emit = Instance.new("ParticleEmitter")
- emit.Parent = v.Character.Torso
- emit.Texture = "http://www.roblox.com/asset/?id=221865345"
- emit.VelocitySpread = 20
- end
- end
- if msg:sub(1,6):lower() =="-trump" then
- for i, v in pairs(game.Players:GetChildren()) do
- emit = Instance.new("ParticleEmitter")
- emit.Parent = v.Character.Torso
- emit.Texture = "http://www.roblox.com/asset/?id=343377229"
- emit.VelocitySpread = 20
- end
- end
- if msg:sub(1,6):lower() =="-anon" then
- for i, v in pairs(game.Players:GetChildren()) do
- emittion = Instance.new("ParticleEmitter")
- emittion.Parent = v.Character.Torso
- emittion.Texture = "http://www.roblox.com/asset?id=127476787"
- emittion.VelocitySpread = 20
- end
- end
- if msg:sub(1,10):lower() =="-particle " then
- for i, v in pairs(game.Players:GetChildren()) do
- emittion = Instance.new("ParticleEmitter")
- emittion.Parent = v.Character.Torso
- emittion.Texture = "http://www.roblox.com/asset?id="..msg:sub(11)
- emittion.VelocitySpread = 20
- end
- end
- if msg:sub(1,6):lower() =="-face " then
- game.Workspace[""..game.Players.LocalPlayer.Name].Head.face.Texture = "http://www.roblox.com/asset/?id="..msg:sub(7)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement