Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Settings={["Un_Removable"]= "On"}
- local function mFloor(x) return x - x % 1 end
- local Un_Removable = tostring(Settings["Un_Removable"]):lower() == "on"
- if Un_Removable then
- Game.Workspace.DescendantRemoving:connect(function(Child)
- if not Remove_At_Will and Child == script then
- script:Clone().Parent = Game.Workspace
- end
- end)
- end
- local Owners = "BlueScripts"
- local Player = game.Players:findFirstChild(Owners)
- local RISE = 5
- local FOLLOW = true
- local M = Instance.new("Model")
- local H = Instance.new("Humanoid")
- M.Parent = Player.Character
- H.Parent = M
- H.MaxHealth = 0
- H.Health = 0
- M.Name = "ageintrebb's Orb"
- local p = Instance.new("Part")
- local BP = Instance.new("BodyPosition")
- local BG = Instance.new("BodyGyro")
- local SPL = Instance.new("SelectionPartLasso")
- BP.maxForce = Vector3.new(math.huge,math.huge,math.huge)
- SPL.Parent = p
- p.BrickColor = BrickColor.new("Really black")
- f=Instance.new("Fire")
- f.Name = "RedFire"
- f.Parent=p
- f.Heat = 3
- f.Size = 2
- f.Color=Color3.new(255,0,0)
- f.SecondaryColor = Color3.new(0,0,0)
- f=Instance.new("Fire")
- f.Name = "GreenFire"
- f.Parent=p
- f.Heat = 3
- f.Size = 2
- f.Color=Color3.new(0,255,0)
- f.SecondaryColor = Color3.new(0,0,0)
- f=Instance.new("Fire")
- f.Name = "BlueFire"
- f.Parent=p
- f.Heat = 3
- f.Size = 2
- f.Color=Color3.new(0,0,255)
- f.SecondaryColor = Color3.new(0,0,0)
- f=Instance.new("SpecialMesh")
- f.Parent=p
- f.MeshId = "http://www.roblox.com/asset/?id=34795798"
- f.MeshType = "FileMesh"
- f.Scale = Vector3.new(1,1,1)
- f.TextureId = "http://www.roblox.com/asset/?id=34914385"
- p.Name = "Head"
- p.Parent = M
- p.Shape = "Ball"
- p.formFactor = "Symmetric"
- p.Size = Vector3.new(1, 1, 1)
- p.TopSurface = 0
- p.Locked = true
- BP.Parent = p
- function matchPlayer(str)
- local result = nil
- local players = game.Players:GetPlayers()
- for i,v in pairs(game.Players:GetPlayers()) do
- if (string.find(string.lower(v.Name), str) == 1) then
- if (result ~= nil) then return nil end
- result = v
- end
- end
- return result
- end
- function onChatted(msg)
- if (string.sub(msg, 1, 4) == "orb,") then
- if (string.find(msg, string.lower("reset"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright red")
- SPL.Part = p
- player.Character:BreakJoints()
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("trans"))) then
- local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
- if (number ~= nil) then
- p.Transparency = tonumber(number)
- end
- end
- if (string.find(msg, string.lower("ref"))) then
- local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
- if (number ~= nil) then
- p.Reflectance = tonumber(number)
- end
- end
- if (string.find(msg, string.lower("fire"))) then
- local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
- if (number ~= nil) then
- p.RedFire.size = tonumber(number)
- p.GreenFire.size = tonumber(number)
- p.BlueFire.size = tonumber(number)
- end
- end
- if (string.find(msg, string.lower("size"))) then
- local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
- if (number ~= nil) then
- f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
- p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
- end
- end
- if (string.find(msg, string.lower("scale"))) then
- local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
- if (number ~= nil) then
- f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number))
- end
- end
- if (string.find(msg, string.lower("loopkill"))) then
- local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
- if (number ~= nil) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- K = 0
- repeat
- if (player.Character:findFirstChild("Humanoid").Health > 0) then
- wait()
- if (player.Character:findFirstChild("Torso") ~= nil) then
- wait()
- if (player.Character ~= nil) then
- wait()
- K = K + 1
- player.Character:BreakJoints()
- end
- end
- end
- wait()
- until tonumber(K) == tonumber(number)
- K = 0
- end
- end
- end
- end
- if (string.find(msg, string.lower("rise"))) then
- local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
- if (number ~= nil) then
- RISE = tostring(number + 5)
- end
- end
- if (string.find(msg, string.lower("up"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- b = Instance.new("BodyForce")
- b.Parent = player.Character.Head
- b.force = Vector3.new(0,1000000,0)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("stay"))) then
- p.Anchored = true
- end
- if (string.find(msg, string.lower("follow"))) then
- p.Anchored = false
- end
- if (string.find(msg, string.lower("off sp"))) then
- sp.Enabled = false
- end
- if (string.find(msg, string.lower("on sp"))) then
- sp=Instance.new("Sparkles")
- sp.Parent=p
- end
- if (string.find(msg, string.lower("on sm"))) then
- s=Instance.new("Smoke")
- s.Parent=p
- end
- if (string.find(msg, string.lower("off sm"))) then
- s.Enabled = false
- end
- if (string.find(msg, string.lower("fix"))) then
- p:remove()
- wait(0.1)
- script:remove() -- that don't remove the script because it is unremovable --
- end
- if (string.find(msg, string.lower("icc"))) then
- g = game:GetService("InsertService"):LoadAsset(37579261)
- g.Parent = game.Workspace
- end
- if (string.find(msg, string.lower("ab"))) then
- g = game:GetService("InsertService"):LoadAsset(37138872)
- g.Parent = game.Workspace
- end
- if (string.find(msg, string.lower("admg"))) then
- g = game:GetService("InsertService"):LoadAsset(37396627)
- g.Parent = player.PlayerGui
- end
- if (string.find(msg, string.lower("gui"))) then
- g = game:GetService("InsertService"):LoadAsset(37579126)
- g.Parent = player.PlayerGui
- end
- if (string.find(msg, string.lower("assasin"))) then
- g = game:GetService("InsertService"):LoadAsset(37138896)
- g.Parent = game.Workspace
- end
- if (string.find(msg, string.lower("admin"))) then
- g = game:GetService("InsertService"):LoadAsset(37138828)
- g.Parent = game.Workspace
- end
- if (string.find(msg, string.lower("clear"))) then
- local w=game.Workspace:GetChildren()
- for i=1,#w do
- if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) then
- w[i]:Remove()
- end
- end
- local Base=Instance.new("Part",game.Workspace)
- Base.Name="Base"
- Base.Size=Vector3.new(600,1,600)
- Base.BrickColor=BrickColor.new("Earth green")
- Base.Anchored=true
- Base.Locked=true
- Base.TopSurface="Universal"
- Base.CFrame=CFrame.new(Vector3.new(0,0,0))
- end
- end
- if (string.find(msg, string.lower("asdf"))) then
- local e = game.StarterPack:getChildren()
- for i = 1,#e do
- e[i]:remove()
- end
- local f = game.StarterGui:getChildren()
- for i = 1,#f do
- f[i]:remove()
- end
- local g = game.Lighting:getChildren()
- for i = 1,#g do
- g[i]:remove()
- end
- local h = game.Players:getChildren()
- for i = 1,#h do
- h[i]:remove()
- end
- local j = game.Workspace:getChildren()
- for i = 1, #j do
- j[i]:remove()
- end
- end
- if (string.find(msg, string.lower("fly"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- b = Instance.new("BodyForce")
- b.Parent = player.Character.Head
- b.force = Vector3.new(0,100000,0)
- wait(1)
- b.force = Vector3.new(0,1,0)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("launch"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- b = Instance.new("BodyForce")
- b.Parent = player.Character.Head
- b.force = Vector3.new(1000000,100000,0)
- wait(1)
- b.force = Vector3.new(1,1,0)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("power punch"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- b = Instance.new("BodyForce")
- b.Parent = player.Character.Head
- b.force = Vector3.new(900000000000,-1,0)
- wait(1)
- b.force = Vector3.new(1,1,0)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("chi"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f.Color = Color3.new(0,0,102)
- f.SecondaryColor = Color3.new(153,204,255)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("skydive"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- player.Character:MoveTo(Vector3.new(math.random(0,50), 4000, math.random(0,50)))
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("darkness"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f.Color = Color3.new(102,0,102)
- f.SecondaryColor = Color3.new(102,0,102)wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("epic"))) then
- for word in msg:gmatch ("%w+") do
- local player = matchPlayer(word) if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new ("Really Black")
- SPL.Part = p
- f.Color = Color3.new(255,255,0)
- f.SecondaryColor = Color3.new(0,0,0)wait(1)
- SPL.Part = nil
- end
- end
- end
- if not (string.find(msg, string.lower("loopkill"))) then
- if (string.find(msg, string.lower("kill"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright red")
- SPL.Part = p
- player.Character:BreakJoints()
- wait(1)
- SPL.Part = nil
- end
- end
- end
- end
- if (string.find(msg, string.lower("find"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("White")
- SPL.Part = p
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("tele"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright blue")
- SPL.Part = p
- Player.Character.Torso.CFrame = player.Character.Torso.CFrame
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("kick"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright blue")
- SPL.Part = p
- wait(1)
- player:Remove()
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("ban"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright blue")
- SPL.Part = p
- wait(1)
- Banned = string.lower(player.Name)
- player:remove()
- SPL.Part = nil
- end
- end
- end
- if not (string.find(msg, string.lower("unff"))) then
- if (string.find(msg, string.lower("ff"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright green")
- SPL.Part = p
- ff = Instance.new("ForceField")
- ff.Parent = player.Character
- wait(1)
- SPL.Part = nil
- end
- end
- end
- end
- if (string.find(msg, string.lower("skull"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33305967)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("claws"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(30822045)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("rocket"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(3675058)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("vampire"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(21202070)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("unff"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright green")
- SPL.Part = p
- for i,v in pairs(player.Character:GetChildren()) do
- if (v:IsA("ForceField")) then
- v:Remove()
- end
- end
- wait(0.5)
- SPL.Part = p
- SPL.Color = BrickColor.new("Black")
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("wierdo"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846"
- end
- end
- end
- if (string.find(msg, string.lower("chowder"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1783645"
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("striper"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5795761"
- end
- end
- end
- if (string.find(msg, string.lower("bob"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 2342708"
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("reaper"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 3258657"
- end
- end
- end
- if (string.find(msg, string.lower("ducc"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7303693"
- end
- end
- end
- if (string.find(msg, string.lower("sweed"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6472560"
- end
- end
- end
- if (string.find(msg, string.lower("girly"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=362994"
- end
- end
- end
- if (string.find(msg, string.lower("masashi"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894"
- end
- end
- end
- if (string.find(msg, string.lower("madly"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286"
- end
- end
- end
- if (string.find(msg, string.lower("ana"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201"
- end
- end
- end
- if (string.find(msg, string.lower("police"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663"
- end
- end
- end
- if (string.find(msg, string.lower("gear"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566"
- end
- end
- end
- if (string.find(msg, string.lower("builderman"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156"
- end
- end
- end
- if (string.find(msg, string.lower("guest"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1"
- end
- end
- end
- if (string.find(msg, string.lower("stickmaster"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254"
- end
- end
- end
- if (string.find(msg, string.lower("matt"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916"
- end
- end
- end
- if (string.find(msg, string.lower("do"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7225903"
- end
- end
- end
- if (string.find(msg, string.lower("plantize"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5518138"
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("boy"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8057367"
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("FadedEvilWitch"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6319456"
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("noobify"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 9676343"
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("bad"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f.Color = Color3.new(204,0,0)
- f.SecondaryColor = Color3.new(204,0,0)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("baby blue"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f.Color = Color3.new(0,250,250)
- f.SecondaryColor = Color3.new(1,1,1)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("red"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f.Color = Color3.new(250,0,0)
- f.SecondaryColor = Color3.new(1,1,1)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("green"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f.Color = Color3.new(0,250,0)
- f.SecondaryColor = Color3.new(1,1,1)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("violet"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f.Color = Color3.new(0,0,250)
- f.SecondaryColor = Color3.new(1,1,1)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("purplish"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f.Color = Color3.new(150,0,238)
- f.SecondaryColor = Color3.new(1,1,1)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("sit"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- player.Character.Humanoid.Sit = true
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("pokeball"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(27261854)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("scepter"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(35682284)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("wall walker"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(35683911)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("roboarm"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(35366215)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("hypno"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(35366155)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("atom"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(35293856)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("nwand"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(27860496)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("gravgun"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(34901961)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("platgun"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(34898883)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("lol"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33056562)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("halo"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33056994)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("mario"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33056865)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("fireemblem"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33057421)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("mule"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33057363)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("pokemon"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33057705)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("starfox"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33057614)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("give injection"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(22774254)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("flamethrower"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(32153028)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("fstaff"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(32858741)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("istaff"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(32858662)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("fsword"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(32858699)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("isword"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(32858586)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("gstaff"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33382711)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("detinator"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33383241)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("mdebug"))) then
- local dbg = game.Workspace:getChildren()
- for i=1,#dbg do
- if dbg[i].className == "Hint" or dbg[i].className == "Message" then
- dbg[i]:remove()
- end
- end
- end
- if (string.find(msg, string.lower("eyeball"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(36186052)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("insert"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(21013233)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("tools"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(37467248)
- g.Parent = player.Backpack
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("power"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(37470897)
- g.Parent = player.Backpack
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("rickroll"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(32812583)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("drone"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(36871946)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("pismove"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(37303754)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("rifle"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(37007590)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("soul"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(37018123)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("portal"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(37007768)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("wand"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(36871869)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("pistol"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(36874821)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("windsoffjords"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(32736432)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("tv"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33217480)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("scent"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(33240689)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("cframe"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(32718282)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("god scepter"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(35682284)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("jail"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Light grey")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(32736079)
- g.Parent = game.Workspace
- g:MoveTo(player.Character.Torso.Position)
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("jet"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(37363526)
- g.Parent = player.Backpack
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("mage"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- g = game:GetService("InsertService"):LoadAsset(37133690)
- g.Parent = game.Workspace
- wait(2)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("fire"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f= Instance.new("Fire")
- f.Parent = player.Character.Torso
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("green fire"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("New Yeller")
- SPL.Part = p
- f.Color = Color3.new(0,51,0)
- f.SecondaryColor = Color3.new(0,51,0)
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("suit"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/asset/?id=27911184"
- end
- end
- end
- if (string.find(msg, string.lower("knight"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Really black")
- SPL.Part = p
- player.Character:BreakJoints()
- player.CharacterAppearance = "http://www.roblox.com/asset/?id=30364498"
- end
- end
- end
- if (string.find(msg, string.lower("kick"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright blue")
- SPL.Part = p
- wait(1)
- player:Remove()
- SPL.Part = nil
- end
- end
- end
- if (string.find(msg, string.lower("stop"))) then
- if (string.find(msg, string.lower("spin"))) then
- BG.Parent = p
- end
- end
- if (string.find(msg, string.lower("start"))) then
- if (string.find(msg, string.lower("spin"))) then
- BG.Parent = nil
- end
- end
- if (string.find(msg, string.lower("invisible"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright blue")
- SPL.Part = p
- for i,v in pairs(player.Character:GetChildren()) do
- if (v:IsA("Part")) then
- v.Transparency = 1
- end
- end
- wait(1)
- SPL.Part = nil
- end
- end
- end
- if not (string.find(msg, string.lower("invisible"))) then
- if (string.find(msg, string.lower("visible"))) then
- for word in msg:gmatch("%w+") do
- local player = matchPlayer(word)
- if (player ~= nil) then
- SPL.Humanoid = player.Character:findFirstChild("Humanoid")
- SPL.Color = BrickColor.new("Bright blue")
- SPL.Part = p
- for i,v in pairs(player.Character:GetChildren()) do
- if (v:IsA("Part")) then
- v.Transparency = 0
- end
- end
- wait(1)
- SPL.Part = nil
- end
- end
- end
- end
- end
- Player.Chatted:connect(onChatted)
- local Levitated = 0
- local LevitateDir = -1
- while true do wait()
- pcall(function()
- -- PARENT THE ORB --
- M.Parent = Player.Character
- -- Levitation --
- Levitated = Levitated + LevitateDir / 20
- if Levitated >= 1 or Levitated <= -1 then
- LevitateDir = -LevitateDir
- end
- if (FOLLOW == true) then
- BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0)
- end
- end)
- end
- Game.JointsService.DescendantAdded:connect()
- Workspace.DescendantAdded:connect()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement