SHOW:
|
|
- or go back to the newest paste.
| 1 | my orb script HAVE FUN !!!!!!!!!!!!! KILLING NOOBS =) | |
| 2 | ------------------------------------------------------------------------------------------------------------ | |
| 3 | local Settings={["Un_Removable"]= "On"}
| |
| 4 | local function mFloor(x) return x - x % 1 end | |
| 5 | local Un_Removable = tostring(Settings["Un_Removable"]):lower() == "on" | |
| 6 | if Un_Removable then | |
| 7 | Game.Workspace.DescendantRemoving:connect(function(Child) | |
| 8 | if not Remove_At_Will and Child == script then | |
| 9 | script:Clone().Parent = Game.Workspace | |
| 10 | end | |
| 11 | end) | |
| 12 | end | |
| 13 | - | Owners = "YOURNAMEHERE" |
| 13 | + | Owners = "beasrt" |
| 14 | Player = game.Players:findFirstChild(Owners) | |
| 15 | if Player.Character:findFirstChild(Owners.."'s Orb V10 !") then | |
| 16 | Player.Character[Owners.."'s Orb V10 !"]:remove() | |
| 17 | end | |
| 18 | local RISE = 5 | |
| 19 | local FOLLOW = true | |
| 20 | local M = Instance.new("Model")
| |
| 21 | local H = Instance.new("Humanoid")
| |
| 22 | M.Parent = Player.Character | |
| 23 | H.Parent = M | |
| 24 | H.MaxHealth = 0 | |
| 25 | H.Health = 0 | |
| 26 | M.Name = Owners.."'s Orb V10 !" | |
| 27 | local p = Instance.new("Part")
| |
| 28 | local BP = Instance.new("BodyPosition")
| |
| 29 | local BG = Instance.new("BodyGyro")
| |
| 30 | local SPL = Instance.new("SelectionPartLasso")
| |
| 31 | BP.maxForce = Vector3.new(math.huge,math.huge,math.huge) | |
| 32 | SPL.Parent = p | |
| 33 | p.BrickColor = BrickColor.new("White")
| |
| 34 | f=Instance.new("Fire")
| |
| 35 | f.Name = "RedFire" | |
| 36 | f.Parent=p | |
| 37 | f.Heat = 3 | |
| 38 | f.Size = 2 | |
| 39 | f.Color=Color3.new(255,0,0) | |
| 40 | f.SecondaryColor = Color3.new(0,0,0) | |
| 41 | f=Instance.new("Fire")
| |
| 42 | f.Name = "GreenFire" | |
| 43 | f.Parent=p | |
| 44 | f.Heat = 3 | |
| 45 | f.Size = 2 | |
| 46 | f.Color=Color3.new(0,255,0) | |
| 47 | f.SecondaryColor = Color3.new(0,0,0) | |
| 48 | f=Instance.new("Fire")
| |
| 49 | f.Name = "BlueFire" | |
| 50 | f.Parent=p | |
| 51 | f.Heat = 3 | |
| 52 | f.Size = 2 | |
| 53 | f.Color=Color3.new(0,0,255) | |
| 54 | f.SecondaryColor = Color3.new(0,0,0) | |
| 55 | f=Instance.new("SpecialMesh")
| |
| 56 | f.Parent=p | |
| 57 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
| 58 | f.MeshType = "FileMesh" | |
| 59 | f.Scale = Vector3.new(1,1,1) | |
| 60 | f.TextureId = "http://www.roblox.com/asset/?id=34914385" | |
| 61 | p.Name = "Head" | |
| 62 | p.Parent = M | |
| 63 | p.Shape = "Ball" | |
| 64 | p.formFactor = "Symmetric" | |
| 65 | p.Size = Vector3.new(1, 1, 1) | |
| 66 | p.TopSurface = 0 | |
| 67 | p.Locked = true | |
| 68 | BP.Parent = p | |
| 69 | function matchPlayer(str) | |
| 70 | local result = nil | |
| 71 | local players = game.Players:GetPlayers() | |
| 72 | for i,v in pairs(game.Players:GetPlayers()) do | |
| 73 | if (string.find(string.lower(v.Name), str) == 1) then | |
| 74 | if (result ~= nil) then return nil end | |
| 75 | result = v | |
| 76 | end | |
| 77 | end | |
| 78 | return result | |
| 79 | end | |
| 80 | --<------------------------------------------------------------------------>-- | |
| 81 | -- ... Say :: Before The Command ... -- | |
| 82 | --<------------------------------------------------------------------------>-- | |
| 83 | function onChatted(msg) | |
| 84 | if (string.sub(msg, 1, 2) == "::") then | |
| 85 | if (string.find(msg, string.lower("reset"))) then
| |
| 86 | for word in msg:gmatch("%w+") do
| |
| 87 | local player = matchPlayer(word) | |
| 88 | if (player ~= nil) then | |
| 89 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 90 | SPL.Color = BrickColor.new("Bright red")
| |
| 91 | SPL.Part = p | |
| 92 | player.Character:BreakJoints() | |
| 93 | wait(1) | |
| 94 | SPL.Part = nil | |
| 95 | end | |
| 96 | end | |
| 97 | end | |
| 98 | if (string.find(msg, string.lower("trans"))) then
| |
| 99 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
| |
| 100 | if (number ~= nil) then | |
| 101 | p.Transparency = tonumber(number) | |
| 102 | end | |
| 103 | end | |
| 104 | if (string.find(msg, string.lower("ref"))) then
| |
| 105 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
| |
| 106 | if (number ~= nil) then | |
| 107 | p.Reflectance = tonumber(number) | |
| 108 | end | |
| 109 | end | |
| 110 | if (string.find(msg, string.lower("fire"))) then
| |
| 111 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
| |
| 112 | if (number ~= nil) then | |
| 113 | p.RedFire.size = tonumber(number) | |
| 114 | p.GreenFire.size = tonumber(number) | |
| 115 | p.BlueFire.size = tonumber(number) | |
| 116 | end | |
| 117 | end | |
| 118 | if (string.find(msg, string.lower("size"))) then
| |
| 119 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
| |
| 120 | if (number ~= nil) then | |
| 121 | f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) | |
| 122 | p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) | |
| 123 | end | |
| 124 | end | |
| 125 | if (string.find(msg, string.lower("scale"))) then
| |
| 126 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
| |
| 127 | if (number ~= nil) then | |
| 128 | f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) | |
| 129 | end | |
| 130 | end | |
| 131 | if (string.find(msg, string.lower("loopkill"))) then
| |
| 132 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
| |
| 133 | if (number ~= nil) then | |
| 134 | for word in msg:gmatch("%w+") do
| |
| 135 | local player = matchPlayer(word) | |
| 136 | if (player ~= nil) then | |
| 137 | K = 0 | |
| 138 | repeat | |
| 139 | if (player.Character:findFirstChild("Humanoid").Health > 0) then
| |
| 140 | wait() | |
| 141 | if (player.Character:findFirstChild("Torso") ~= nil) then
| |
| 142 | wait() | |
| 143 | if (player.Character ~= nil) then | |
| 144 | wait() | |
| 145 | K = K + 1 | |
| 146 | player.Character:BreakJoints() | |
| 147 | end | |
| 148 | end | |
| 149 | end | |
| 150 | wait() | |
| 151 | until tonumber(K) == tonumber(number) | |
| 152 | K = 0 | |
| 153 | end | |
| 154 | end | |
| 155 | end | |
| 156 | end | |
| 157 | if (string.find(msg, string.lower("rise"))) then
| |
| 158 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
| |
| 159 | if (number ~= nil) then | |
| 160 | RISE = tostring(number + 5) | |
| 161 | end | |
| 162 | end | |
| 163 | if (string.find(msg, string.lower("stay"))) then
| |
| 164 | p.Anchored = true | |
| 165 | end | |
| 166 | if (string.find(msg, string.lower("follow"))) then
| |
| 167 | p.Anchored = false | |
| 168 | end | |
| 169 | if (string.find(msg, string.lower("off sp"))) then
| |
| 170 | sp.Enabled = false | |
| 171 | end | |
| 172 | if (string.find(msg, string.lower("on sp"))) then
| |
| 173 | sp=Instance.new("Sparkles")
| |
| 174 | sp.Parent=p | |
| 175 | end | |
| 176 | if (string.find(msg, string.lower("on sm"))) then
| |
| 177 | s=Instance.new("Smoke")
| |
| 178 | s.Parent=p | |
| 179 | end | |
| 180 | if (string.find(msg, string.lower("off sm"))) then
| |
| 181 | s.Enabled = false | |
| 182 | end | |
| 183 | if (string.find(msg, string.lower("purple mesh"))) then
| |
| 184 | f.Parent = p | |
| 185 | f.TextureId="http://www.roblox.com/asset/?id=37329295" | |
| 186 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
| 187 | end | |
| 188 | if (string.find(msg, string.lower("red mesh"))) then
| |
| 189 | f.Parent = p | |
| 190 | f.TextureId="http://www.roblox.com/asset/?id=34914385" | |
| 191 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
| 192 | end | |
| 193 | if (string.find(msg, string.lower("blue mesh"))) then
| |
| 194 | f.Parent = p | |
| 195 | f.TextureId="http://www.roblox.com/asset/?id=34795697" | |
| 196 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
| 197 | end | |
| 198 | if (string.find(msg, string.lower("yellow mesh"))) then
| |
| 199 | f.Parent = p | |
| 200 | f.TextureId="http://www.roblox.com/asset/?id=38034696" | |
| 201 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
| 202 | end | |
| 203 | if (string.find(msg, string.lower("green mesh"))) then
| |
| 204 | f.Parent = p | |
| 205 | f.TextureId="http://www.roblox.com/asset/?id=38033519" | |
| 206 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
| 207 | end | |
| 208 | if (string.find(msg, string.lower("pink mesh"))) then
| |
| 209 | f.Parent = p | |
| 210 | f.TextureId="http://www.roblox.com/asset/?id=25980285" | |
| 211 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
| 212 | end | |
| 213 | if (string.find(msg, string.lower("orange mesh"))) then
| |
| 214 | f.Parent = p | |
| 215 | f.TextureId="http://www.roblox.com/asset/?id=16774634" | |
| 216 | f.MeshId = "3a00f203befb97639d32b9932b18bb23" | |
| 217 | end | |
| 218 | if (string.find(msg, string.lower("atom mesh"))) then
| |
| 219 | f.Parent = p | |
| 220 | f.TextureId="http://www.roblox.com/asset/?id=10913771" | |
| 221 | f.MeshId = "http://www.roblox.com/asset/?id=10913794" | |
| 222 | end | |
| 223 | if (string.find(msg, string.lower("fish mesh"))) then
| |
| 224 | f.Parent = p | |
| 225 | f.TextureId="http://www.roblox.com/asset/?id=31574190" | |
| 226 | f.MeshId = "http://www.roblox.com/asset/?id=31221717" | |
| 227 | end | |
| 228 | if (string.find(msg, string.lower("book mesh"))) then
| |
| 229 | f.Parent = p | |
| 230 | f.TextureId="fb0b0800411509923ef4d41a46888323" | |
| 231 | f.MeshId = "http://www.roblox.com/asset/?id=1136139" | |
| 232 | end | |
| 233 | if (string.find(msg, string.lower("magic mesh"))) then
| |
| 234 | f.Parent = p | |
| 235 | f.TextureId="http://www.roblox.com/asset/?id=29358683" | |
| 236 | f.MeshId = "0fa80faaf310b3d17887bb00f1bc3517" | |
| 237 | end | |
| 238 | if (string.find(msg, string.lower("rail mesh"))) then
| |
| 239 | f.Parent = p | |
| 240 | f.TextureId="" | |
| 241 | f.MeshId = "11f686db41a12e23bc492c67cad64308" | |
| 242 | end | |
| 243 | if (string.find(msg, string.lower("eyportal mesh"))) then
| |
| 244 | f.Parent = p | |
| 245 | f.TextureId="http://www.roblox.com/asset/?id=19106633" | |
| 246 | f.MeshId = "http://www.roblox.com/asset/?id=19106648" | |
| 247 | end | |
| 248 | if (string.find(msg, string.lower("eye mesh"))) then
| |
| 249 | f.Parent = p | |
| 250 | f.TextureId="http://www.roblox.com/asset/?id=5013397" | |
| 251 | f.MeshId = "http://www.roblox.com/asset/?id=1185246" | |
| 252 | end | |
| 253 | if (string.find(msg, string.lower("scorpion mesh"))) then
| |
| 254 | f.Parent = p | |
| 255 | f.TextureId="http://www.roblox.com/asset/?id=15405707" | |
| 256 | f.MeshId = "http://www.roblox.com/asset/?id=15158219" | |
| 257 | end | |
| 258 | if (string.find(msg, string.lower("plane mesh"))) then
| |
| 259 | f.Parent = p | |
| 260 | f.TextureId="http://www.roblox.com/asset/?id=11904404" | |
| 261 | f.MeshId = "ada8493b74fd55bebc11d72ffa35800d" | |
| 262 | end | |
| 263 | if (string.find(msg, string.lower("chaos mesh"))) then
| |
| 264 | f.Parent = p | |
| 265 | f.TextureId="http://www.roblox.com/asset/?id=10348768" | |
| 266 | f.MeshId = "2567ca845304ded49542bd77c0b324d2" | |
| 267 | end | |
| 268 | if (string.find(msg, string.lower("dragon mesh"))) then
| |
| 269 | f.Parent = p | |
| 270 | f.TextureId="http://www.roblox.com/asset/?id=2031969" | |
| 271 | f.MeshId = "ffbff6fa7aae92d9b6c316fe10aa71ae" | |
| 272 | end | |
| 273 | if (string.find(msg, string.lower("duck mesh"))) then
| |
| 274 | f.Parent = p | |
| 275 | f.TextureId="http://www.roblox.com/asset/?id=9419827" | |
| 276 | f.MeshId = "http://www.roblox.com/asset/?id=9419831" | |
| 277 | end | |
| 278 | if (string.find(msg, string.lower("cam mesh"))) then
| |
| 279 | f.Parent = p | |
| 280 | f.TextureId="http://www.roblox.com/asset/?id=2093097" | |
| 281 | f.MeshId = "http://www.roblox.com/asset/?id=2093105" | |
| 282 | end | |
| 283 | if (string.find(msg, string.lower("rock mesh"))) then
| |
| 284 | f.Parent = p | |
| 285 | f.TextureId="http://www.roblox.com/asset/?id=1290030" | |
| 286 | f.MeshId = "http://www.roblox.com/asset/?id=1290033" | |
| 287 | end | |
| 288 | if (string.find(msg, string.lower("earth mesh"))) then
| |
| 289 | f.Parent = p | |
| 290 | f.TextureId="http://www.roblox.com/asset/?id=10061209" | |
| 291 | f.MeshId = "http://www.roblox.com/asset/?id=10061232" | |
| 292 | end | |
| 293 | if (string.find(msg, string.lower("hamburger mesh"))) then
| |
| 294 | f.Parent = p | |
| 295 | f.TextureId="http://www.roblox.com/asset/?id=16432575" | |
| 296 | f.MeshId = "http://www.roblox.com/asset/?id=16646125" | |
| 297 | end | |
| 298 | if (string.find(msg, string.lower("bird mesh"))) then
| |
| 299 | f.Parent = p | |
| 300 | f.TextureId="http://wwww.roblox.com/asset/?id=19047274" | |
| 301 | f.MeshId = "5f87c3925d29eed5f00a96fc3861bb12" | |
| 302 | end | |
| 303 | if (string.find(msg, string.lower("bat mesh"))) then
| |
| 304 | f.Parent = p | |
| 305 | f.TextureId="http://www.roblox.com/asset/?id=37223767" | |
| 306 | f.MeshId = "http://www.roblox.com/asset/?id=37223772" | |
| 307 | end | |
| 308 | if (string.find(msg, string.lower("pumpkin mesh"))) then
| |
| 309 | f.Parent = p | |
| 310 | f.TextureId="http://www.roblox.com/asset/?id=1158033" | |
| 311 | f.MeshId = "http://www.roblox.com/asset/?id=1158007" | |
| 312 | end | |
| 313 | if (string.find(msg, string.lower("dominus mesh"))) then
| |
| 314 | f.Parent = p | |
| 315 | f.TextureId="http://www.roblox.com/asset/?id=31100020" | |
| 316 | f.MeshId = "http://www.roblox.com/asset/?id=21057410" | |
| 317 | end | |
| 318 | if (string.find(msg, string.lower("cube mesh"))) then
| |
| 319 | f.Parent = p | |
| 320 | f.Scale = Vector3.new(0.2,0.2,0.2) | |
| 321 | f.TextureId="http://www.roblox.com/asset/?id=8722621" | |
| 322 | f.MeshId = "7787be30ae7f81dca9bf01082f509fbb" | |
| 323 | end | |
| 324 | if (string.find(msg, string.lower("star mesh"))) then
| |
| 325 | f.Parent = p | |
| 326 | f.Scale = Vector3.new(0.2,0.2,0.2) | |
| 327 | f.TextureId="" | |
| 328 | f.MeshId = "8458a59ceb509b0d341889d45302a2f2" | |
| 329 | p.BrickColor = BrickColor.new("Bright yellow")
| |
| 330 | end | |
| 331 | if (string.find(msg, string.lower("disco mesh"))) then
| |
| 332 | f.Parent = p | |
| 333 | p.Reflectance = 1 | |
| 334 | f.Scale = Vector3.new(0.2,0.2,0.2) | |
| 335 | f.TextureId = "" | |
| 336 | f.MeshId = "02a2c4a4b52aa2ca8290f63dcf4cc424" | |
| 337 | end | |
| 338 | if (string.find(msg, string.lower("no mesh"))) then
| |
| 339 | f.Parent = M | |
| 340 | end | |
| 341 | if (string.find(msg, string.lower("blue color"))) then
| |
| 342 | p.BrickColor = BrickColor.new("Deep blue")
| |
| 343 | end | |
| 344 | if (string.find(msg, string.lower("dark blue color"))) then
| |
| 345 | p.BrickColor = BrickColor.new("Navy blue")
| |
| 346 | end | |
| 347 | if (string.find(msg, string.lower("light blue color"))) then
| |
| 348 | p.BrickColor = BrickColor.new("Teal")
| |
| 349 | end | |
| 350 | if (string.find(msg, string.lower("red color"))) then
| |
| 351 | p.BrickColor = BrickColor.new("Bright red")
| |
| 352 | end | |
| 353 | if (string.find(msg, string.lower("light red color"))) then
| |
| 354 | p.BrickColor = BrickColor.new("really red")
| |
| 355 | end | |
| 356 | if (string.find(msg, string.lower("green color"))) then
| |
| 357 | p.BrickColor = BrickColor.new("Camo")
| |
| 358 | end | |
| 359 | if (string.find(msg, string.lower("dark green color"))) then
| |
| 360 | p.BrickColor = BrickColor.new("Earth green")
| |
| 361 | end | |
| 362 | if (string.find(msg, string.lower("light green color"))) then
| |
| 363 | p.BrickColor = BrickColor.new("Lime green")
| |
| 364 | end | |
| 365 | if (string.find(msg, string.lower("yellow color"))) then
| |
| 366 | p.BrickColor = BrickColor.new("Bright yellow")
| |
| 367 | end | |
| 368 | if (string.find(msg, string.lower("light yellow color"))) then
| |
| 369 | p.BrickColor = BrickColor.new("New yeller")
| |
| 370 | end | |
| 371 | if (string.find(msg, string.lower("orange color"))) then
| |
| 372 | p.BrickColor = BrickColor.new("Neon orange")
| |
| 373 | end | |
| 374 | if (string.find(msg, string.lower("purple color"))) then
| |
| 375 | p.BrickColor = BrickColor.new("Bright violet")
| |
| 376 | end | |
| 377 | if (string.find(msg, string.lower("magenta color"))) then
| |
| 378 | p.BrickColor = BrickColor.new("Magenta")
| |
| 379 | end | |
| 380 | if (string.find(msg, string.lower("brown color"))) then
| |
| 381 | p.BrickColor = BrickColor.new("CGA brown")
| |
| 382 | end | |
| 383 | if (string.find(msg, string.lower("dark brown color"))) then
| |
| 384 | p.BrickColor = BrickColor.new("Reddish brown")
| |
| 385 | end | |
| 386 | if (string.find(msg, string.lower("light brown color"))) then
| |
| 387 | p.BrickColor = BrickColor.new("Nougat")
| |
| 388 | end | |
| 389 | if (string.find(msg, string.lower("white color"))) then
| |
| 390 | p.BrickColor = BrickColor.new("White")
| |
| 391 | end | |
| 392 | if (string.find(msg, string.lower("black color"))) then
| |
| 393 | p.BrickColor = BrickColor.new("Black")
| |
| 394 | end | |
| 395 | if (string.find(msg, string.lower("plastic material"))) then
| |
| 396 | p.Material = "Plastic" | |
| 397 | end | |
| 398 | if (string.find(msg, string.lower("wood material"))) then
| |
| 399 | p.Material = "Wood" | |
| 400 | end | |
| 401 | if (string.find(msg, string.lower("slate material"))) then
| |
| 402 | p.Material = "Slate" | |
| 403 | end | |
| 404 | if (string.find(msg, string.lower("concrete material"))) then
| |
| 405 | p.Material = "Concrete" | |
| 406 | end | |
| 407 | if (string.find(msg, string.lower("metal material"))) then
| |
| 408 | p.Material = "CorrodedMetal" | |
| 409 | end | |
| 410 | if (string.find(msg, string.lower("dplate material"))) then
| |
| 411 | p.Material = "DiamondPlate" | |
| 412 | end | |
| 413 | if (string.find(msg, string.lower("foil material"))) then
| |
| 414 | p.Material = "Foil" | |
| 415 | end | |
| 416 | if (string.find(msg, string.lower("grass material"))) then
| |
| 417 | p.Material = "Grass" | |
| 418 | end | |
| 419 | if (string.find(msg, string.lower("ice material"))) then
| |
| 420 | p.Material = "Ice" | |
| 421 | end | |
| 422 | if (string.find(msg, string.lower("commands"))) then
| |
| 423 | g = game:GetService("InsertService"):LoadAsset(41088349)
| |
| 424 | g.Parent = Player.Character | |
| 425 | end | |
| 426 | if (string.find(msg, string.lower("fix"))) then
| |
| 427 | p:remove() | |
| 428 | wait(0.1) | |
| 429 | script:remove() ----->>>>> that don't remove the script because it is unremovable, just reset it. <<<<<----- | |
| 430 | end | |
| 431 | if (string.find(msg, string.lower("wierdo"))) then
| |
| 432 | for word in msg:gmatch("%w+") do
| |
| 433 | local player = matchPlayer(word) | |
| 434 | if (player ~= nil) then | |
| 435 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 436 | SPL.Color = BrickColor.new("Really black")
| |
| 437 | SPL.Part = p | |
| 438 | player.Character:BreakJoints() | |
| 439 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846" | |
| 440 | end | |
| 441 | end | |
| 442 | end | |
| 443 | if (string.find(msg, string.lower("chowder"))) then
| |
| 444 | for word in msg:gmatch("%w+") do
| |
| 445 | local player = matchPlayer(word) | |
| 446 | if (player ~= nil) then | |
| 447 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 448 | SPL.Color = BrickColor.new("New Yeller")
| |
| 449 | SPL.Part = p | |
| 450 | player.Character:BreakJoints() | |
| 451 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1783645" | |
| 452 | SPL.Part = nil | |
| 453 | end | |
| 454 | end | |
| 455 | end | |
| 456 | if (string.find(msg, string.lower("striper"))) then
| |
| 457 | for word in msg:gmatch("%w+") do
| |
| 458 | local player = matchPlayer(word) | |
| 459 | if (player ~= nil) then | |
| 460 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 461 | SPL.Color = BrickColor.new("Really black")
| |
| 462 | SPL.Part = p | |
| 463 | player.Character:BreakJoints() | |
| 464 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5795761" | |
| 465 | end | |
| 466 | end | |
| 467 | end | |
| 468 | if (string.find(msg, string.lower("bob"))) then
| |
| 469 | for word in msg:gmatch("%w+") do
| |
| 470 | local player = matchPlayer(word) | |
| 471 | if (player ~= nil) then | |
| 472 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 473 | SPL.Color = BrickColor.new("New Yeller")
| |
| 474 | SPL.Part = p | |
| 475 | player.Character:BreakJoints() | |
| 476 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 2342708" | |
| 477 | SPL.Part = nil | |
| 478 | end | |
| 479 | end | |
| 480 | end | |
| 481 | if (string.find(msg, string.lower("telamon"))) then
| |
| 482 | for word in msg:gmatch("%w+") do
| |
| 483 | local player = matchPlayer(word) | |
| 484 | if (player ~= nil) then | |
| 485 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 486 | SPL.Color = BrickColor.new("Really black")
| |
| 487 | SPL.Part = p | |
| 488 | player.Character:BreakJoints() | |
| 489 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261" | |
| 490 | end | |
| 491 | end | |
| 492 | end | |
| 493 | if (string.find(msg, string.lower("ducc"))) then
| |
| 494 | for word in msg:gmatch("%w+") do
| |
| 495 | local player = matchPlayer(word) | |
| 496 | if (player ~= nil) then | |
| 497 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 498 | SPL.Color = BrickColor.new("Really black")
| |
| 499 | SPL.Part = p | |
| 500 | player.Character:BreakJoints() | |
| 501 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7303693" | |
| 502 | end | |
| 503 | end | |
| 504 | end | |
| 505 | if (string.find(msg, string.lower("sweed"))) then
| |
| 506 | for word in msg:gmatch("%w+") do
| |
| 507 | local player = matchPlayer(word) | |
| 508 | if (player ~= nil) then | |
| 509 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 510 | SPL.Color = BrickColor.new("Really black")
| |
| 511 | SPL.Part = p | |
| 512 | player.Character:BreakJoints() | |
| 513 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6472560" | |
| 514 | end | |
| 515 | end | |
| 516 | end | |
| 517 | if (string.find(msg, string.lower("girly"))) then
| |
| 518 | for word in msg:gmatch("%w+") do
| |
| 519 | local player = matchPlayer(word) | |
| 520 | if (player ~= nil) then | |
| 521 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 522 | SPL.Color = BrickColor.new("Really black")
| |
| 523 | SPL.Part = p | |
| 524 | player.Character:BreakJoints() | |
| 525 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=362994" | |
| 526 | end | |
| 527 | end | |
| 528 | end | |
| 529 | if (string.find(msg, string.lower("masashi"))) then
| |
| 530 | for word in msg:gmatch("%w+") do
| |
| 531 | local player = matchPlayer(word) | |
| 532 | if (player ~= nil) then | |
| 533 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 534 | SPL.Color = BrickColor.new("Really black")
| |
| 535 | SPL.Part = p | |
| 536 | player.Character:BreakJoints() | |
| 537 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894" | |
| 538 | end | |
| 539 | end | |
| 540 | end | |
| 541 | if (string.find(msg, string.lower("madly"))) then
| |
| 542 | for word in msg:gmatch("%w+") do
| |
| 543 | local player = matchPlayer(word) | |
| 544 | if (player ~= nil) then | |
| 545 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 546 | SPL.Color = BrickColor.new("Really black")
| |
| 547 | SPL.Part = p | |
| 548 | player.Character:BreakJoints() | |
| 549 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286" | |
| 550 | end | |
| 551 | end | |
| 552 | end | |
| 553 | if (string.find(msg, string.lower("ana"))) then
| |
| 554 | for word in msg:gmatch("%w+") do
| |
| 555 | local player = matchPlayer(word) | |
| 556 | if (player ~= nil) then | |
| 557 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 558 | SPL.Color = BrickColor.new("Really black")
| |
| 559 | SPL.Part = p | |
| 560 | player.Character:BreakJoints() | |
| 561 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201" | |
| 562 | end | |
| 563 | end | |
| 564 | end | |
| 565 | if (string.find(msg, string.lower("police"))) then
| |
| 566 | for word in msg:gmatch("%w+") do
| |
| 567 | local player = matchPlayer(word) | |
| 568 | if (player ~= nil) then | |
| 569 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 570 | SPL.Color = BrickColor.new("Really black")
| |
| 571 | SPL.Part = p | |
| 572 | player.Character:BreakJoints() | |
| 573 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663" | |
| 574 | end | |
| 575 | end | |
| 576 | end | |
| 577 | if (string.find(msg, string.lower("gear"))) then
| |
| 578 | for word in msg:gmatch("%w+") do
| |
| 579 | local player = matchPlayer(word) | |
| 580 | if (player ~= nil) then | |
| 581 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 582 | SPL.Color = BrickColor.new("Really black")
| |
| 583 | SPL.Part = p | |
| 584 | player.Character:BreakJoints() | |
| 585 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566" | |
| 586 | end | |
| 587 | end | |
| 588 | end | |
| 589 | if (string.find(msg, string.lower("builderman"))) then
| |
| 590 | for word in msg:gmatch("%w+") do
| |
| 591 | local player = matchPlayer(word) | |
| 592 | if (player ~= nil) then | |
| 593 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 594 | SPL.Color = BrickColor.new("Really black")
| |
| 595 | SPL.Part = p | |
| 596 | player.Character:BreakJoints() | |
| 597 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156" | |
| 598 | end | |
| 599 | end | |
| 600 | end | |
| 601 | if (string.find(msg, string.lower("reaper"))) then
| |
| 602 | for word in msg:gmatch("%w+") do
| |
| 603 | local player = matchPlayer(word) | |
| 604 | if (player ~= nil) then | |
| 605 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 606 | SPL.Color = BrickColor.new("Really black")
| |
| 607 | SPL.Part = p | |
| 608 | player.Character:BreakJoints() | |
| 609 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=8599152" | |
| 610 | end | |
| 611 | end | |
| 612 | end | |
| 613 | if (string.find(msg, string.lower("guest"))) then
| |
| 614 | for word in msg:gmatch("%w+") do
| |
| 615 | local player = matchPlayer(word) | |
| 616 | if (player ~= nil) then | |
| 617 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 618 | SPL.Color = BrickColor.new("Really black")
| |
| 619 | SPL.Part = p | |
| 620 | player.Character:BreakJoints() | |
| 621 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1" | |
| 622 | end | |
| 623 | end | |
| 624 | end | |
| 625 | if (string.find(msg, string.lower("stickmaster"))) then
| |
| 626 | for word in msg:gmatch("%w+") do
| |
| 627 | local player = matchPlayer(word) | |
| 628 | if (player ~= nil) then | |
| 629 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 630 | SPL.Color = BrickColor.new("Really black")
| |
| 631 | SPL.Part = p | |
| 632 | player.Character:BreakJoints() | |
| 633 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254" | |
| 634 | end | |
| 635 | end | |
| 636 | end | |
| 637 | if (string.find(msg, string.lower("matt"))) then
| |
| 638 | for word in msg:gmatch("%w+") do
| |
| 639 | local player = matchPlayer(word) | |
| 640 | if (player ~= nil) then | |
| 641 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 642 | SPL.Color = BrickColor.new("Really black")
| |
| 643 | SPL.Part = p | |
| 644 | player.Character:BreakJoints() | |
| 645 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916" | |
| 646 | end | |
| 647 | end | |
| 648 | end | |
| 649 | if (string.find(msg, string.lower("nairod7"))) then
| |
| 650 | for word in msg:gmatch("%w+") do
| |
| 651 | local player = matchPlayer(word) | |
| 652 | if (player ~= nil) then | |
| 653 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 654 | SPL.Color = BrickColor.new("Really black")
| |
| 655 | SPL.Part = p | |
| 656 | player.Character:BreakJoints() | |
| 657 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7225903" | |
| 658 | end | |
| 659 | end | |
| 660 | end | |
| 661 | if (string.find(msg, string.lower("icookienl"))) then
| |
| 662 | for word in msg:gmatch("%w+") do
| |
| 663 | local player = matchPlayer(word) | |
| 664 | if (player ~= nil) then | |
| 665 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 666 | SPL.Color = BrickColor.new("Really black")
| |
| 667 | SPL.Part = p | |
| 668 | player.Character:BreakJoints() | |
| 669 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3166696" | |
| 670 | end | |
| 671 | end | |
| 672 | end | |
| 673 | if (string.find(msg, string.lower("garrettjay"))) then
| |
| 674 | for word in msg:gmatch("%w+") do
| |
| 675 | local player = matchPlayer(word) | |
| 676 | if (player ~= nil) then | |
| 677 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 678 | SPL.Color = BrickColor.new("Really black")
| |
| 679 | SPL.Part = p | |
| 680 | player.Character:BreakJoints() | |
| 681 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=91645" | |
| 682 | end | |
| 683 | end | |
| 684 | end | |
| 685 | if (string.find(msg, string.lower("plantize"))) then
| |
| 686 | for word in msg:gmatch("%w+") do
| |
| 687 | local player = matchPlayer(word) | |
| 688 | if (player ~= nil) then | |
| 689 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 690 | SPL.Color = BrickColor.new("New Yeller")
| |
| 691 | SPL.Part = p | |
| 692 | player.Character:BreakJoints() | |
| 693 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5518138" | |
| 694 | SPL.Part = nil | |
| 695 | end | |
| 696 | end | |
| 697 | end | |
| 698 | if (string.find(msg, string.lower("boy"))) then
| |
| 699 | for word in msg:gmatch("%w+") do
| |
| 700 | local player = matchPlayer(word) | |
| 701 | if (player ~= nil) then | |
| 702 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 703 | SPL.Color = BrickColor.new("New Yeller")
| |
| 704 | SPL.Part = p | |
| 705 | player.Character:BreakJoints() | |
| 706 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8057367" | |
| 707 | SPL.Part = nil | |
| 708 | end | |
| 709 | end | |
| 710 | end | |
| 711 | if (string.find(msg, string.lower("faded"))) then
| |
| 712 | for word in msg:gmatch("%w+") do
| |
| 713 | local player = matchPlayer(word) | |
| 714 | if (player ~= nil) then | |
| 715 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 716 | SPL.Color = BrickColor.new("New Yeller")
| |
| 717 | SPL.Part = p | |
| 718 | player.Character:BreakJoints() | |
| 719 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6319456" | |
| 720 | SPL.Part = nil | |
| 721 | end | |
| 722 | end | |
| 723 | end | |
| 724 | if (string.find(msg, string.lower("noobify"))) then
| |
| 725 | for word in msg:gmatch("%w+") do
| |
| 726 | local player = matchPlayer(word) | |
| 727 | if (player ~= nil) then | |
| 728 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 729 | SPL.Color = BrickColor.new("New Yeller")
| |
| 730 | SPL.Part = p | |
| 731 | player.Character:BreakJoints() | |
| 732 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 9676343" | |
| 733 | SPL.Part = nil | |
| 734 | end | |
| 735 | end | |
| 736 | end | |
| 737 | if (string.find(msg, string.lower("try"))) then
| |
| 738 | for word in msg:gmatch("%w+") do
| |
| 739 | local player = matchPlayer(word) | |
| 740 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal?
| |
| 741 | if (number ~= nil) then | |
| 742 | if (player ~= nil) then | |
| 743 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 744 | SPL.Color = BrickColor.new("New Yeller")
| |
| 745 | SPL.Part = p | |
| 746 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..tonumber(number) | |
| 747 | wait(0.01) | |
| 748 | player.Character:BreakJoints() | |
| 749 | wait(1) | |
| 750 | SPL.Part = nil | |
| 751 | end | |
| 752 | end | |
| 753 | end | |
| 754 | end | |
| 755 | if (string.find(msg, string.lower("icc"))) then
| |
| 756 | for word in msg:gmatch("%w+") do
| |
| 757 | local player = matchPlayer(word) | |
| 758 | if (player ~= nil) then | |
| 759 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 760 | SPL.Color = BrickColor.new("New Yeller")
| |
| 761 | SPL.Part = p | |
| 762 | g = game:GetService("InsertService"):LoadAsset(37681988)
| |
| 763 | g.Parent = player.Character | |
| 764 | wait(1) | |
| 765 | SPL.Part = nil | |
| 766 | end | |
| 767 | end | |
| 768 | end | |
| 769 | if (string.find(msg, string.lower("ab"))) then ----->>>>> Script Made by nairod7 <<<<<-----
| |
| 770 | for word in msg:gmatch("%w+") do
| |
| 771 | local player = matchPlayer(word) | |
| 772 | if (player ~= nil) then | |
| 773 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 774 | SPL.Color = BrickColor.new("New Yeller")
| |
| 775 | SPL.Part = p | |
| 776 | g = game:GetService("InsertService"):LoadAsset(39348506)
| |
| 777 | g.Parent = player.Character | |
| 778 | wait(1) | |
| 779 | SPL.Part = nil | |
| 780 | end | |
| 781 | end | |
| 782 | end | |
| 783 | if (string.find(msg, string.lower("safeb"))) then ----->>>>> Script Made by Absurd <<<<<-----
| |
| 784 | for word in msg:gmatch("%w+") do
| |
| 785 | local player = matchPlayer(word) | |
| 786 | if (player ~= nil) then | |
| 787 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 788 | SPL.Color = BrickColor.new("New Yeller")
| |
| 789 | SPL.Part = p | |
| 790 | g = game:GetService("InsertService"):LoadAsset(39348631)
| |
| 791 | g.Parent = player.Character | |
| 792 | wait(1) | |
| 793 | SPL.Part = nil | |
| 794 | end | |
| 795 | end | |
| 796 | end | |
| 797 | if (string.find(msg, string.lower("makeorb"))) then
| |
| 798 | for word in msg:gmatch("%w+") do
| |
| 799 | local player = matchPlayer(word) | |
| 800 | if (player ~= nil) then | |
| 801 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 802 | SPL.Color = BrickColor.new("New Yeller")
| |
| 803 | SPL.Part = p | |
| 804 | g = game:GetService("InsertService"):LoadAsset(41098024)
| |
| 805 | g.Parent = game.Workspace | |
| 806 | g:MoveTo(player.Character.Torso.Position) | |
| 807 | wait(1) | |
| 808 | SPL.Part = nil | |
| 809 | end | |
| 810 | end | |
| 811 | end | |
| 812 | if (string.find(msg, string.lower("gui"))) then
| |
| 813 | for word in msg:gmatch("%w+") do
| |
| 814 | local player = matchPlayer(word) | |
| 815 | if (player ~= nil) then | |
| 816 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 817 | SPL.Color = BrickColor.new("New Yeller")
| |
| 818 | SPL.Part = p | |
| 819 | g = game:GetService("InsertService"):LoadAsset(37673876)
| |
| 820 | g.Parent = player.Character | |
| 821 | wait(1) | |
| 822 | SPL.Part = nil | |
| 823 | end | |
| 824 | end | |
| 825 | end | |
| 826 | if (string.find(msg, string.lower("admg"))) then
| |
| 827 | for word in msg:gmatch("%w+") do
| |
| 828 | local player = matchPlayer(word) | |
| 829 | if (player ~= nil) then | |
| 830 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 831 | SPL.Color = BrickColor.new("New Yeller")
| |
| 832 | SPL.Part = p | |
| 833 | g = game:GetService("InsertService"):LoadAsset(37682962)
| |
| 834 | g.Parent = player.Character | |
| 835 | wait(1) | |
| 836 | SPL.Part = nil | |
| 837 | end | |
| 838 | end | |
| 839 | end | |
| 840 | if (string.find(msg, string.lower("assasin"))) then
| |
| 841 | for word in msg:gmatch("%w+") do
| |
| 842 | local player = matchPlayer(word) | |
| 843 | if (player ~= nil) then | |
| 844 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 845 | SPL.Color = BrickColor.new("New Yeller")
| |
| 846 | SPL.Part = p | |
| 847 | g = game:GetService("InsertService"):LoadAsset(40848777)
| |
| 848 | g.Parent = game.Workspace | |
| 849 | g:MoveTo(player.Character.Torso.Position) | |
| 850 | wait(1) | |
| 851 | SPL.Part = nil | |
| 852 | end | |
| 853 | end | |
| 854 | end | |
| 855 | if (string.find(msg, string.lower("camove"))) then
| |
| 856 | for word in msg:gmatch("%w+") do
| |
| 857 | local player = matchPlayer(word) | |
| 858 | if (player ~= nil) then | |
| 859 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 860 | SPL.Color = BrickColor.new("New Yeller")
| |
| 861 | SPL.Part = p | |
| 862 | g = game:GetService("InsertService"):LoadAsset(39035199)
| |
| 863 | g.Parent = game.Workspace | |
| 864 | g:MoveTo(player.Character.Torso.Position) | |
| 865 | wait(1) | |
| 866 | SPL.Part = nil | |
| 867 | end | |
| 868 | end | |
| 869 | end | |
| 870 | if (string.find(msg, string.lower("blade"))) then
| |
| 871 | for word in msg:gmatch("%w+") do
| |
| 872 | local player = matchPlayer(word) | |
| 873 | if (player ~= nil) then | |
| 874 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 875 | SPL.Color = BrickColor.new("New Yeller")
| |
| 876 | SPL.Part = p | |
| 877 | g = game:GetService("InsertService"):LoadAsset(39033468)
| |
| 878 | g.Parent = game.Workspace | |
| 879 | g:MoveTo(player.Character.Torso.Position) | |
| 880 | wait(1) | |
| 881 | SPL.Part = nil | |
| 882 | end | |
| 883 | end | |
| 884 | end | |
| 885 | if (string.find(msg, string.lower("rc"))) then
| |
| 886 | for word in msg:gmatch("%w+") do
| |
| 887 | local player = matchPlayer(word) | |
| 888 | if (player ~= nil) then | |
| 889 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 890 | SPL.Color = BrickColor.new("New Yeller")
| |
| 891 | SPL.Part = p | |
| 892 | g = game:GetService("InsertService"):LoadAsset(39167741)
| |
| 893 | g.Parent = game.Workspace | |
| 894 | g:MoveTo(player.Character.Torso.Position) | |
| 895 | wait(1) | |
| 896 | SPL.Part = nil | |
| 897 | end | |
| 898 | end | |
| 899 | end | |
| 900 | if (string.find(msg, string.lower("explorer"))) then
| |
| 901 | for word in msg:gmatch("%w+") do
| |
| 902 | local player = matchPlayer(word) | |
| 903 | if (player ~= nil) then | |
| 904 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 905 | SPL.Color = BrickColor.new("New Yeller")
| |
| 906 | SPL.Part = p | |
| 907 | g = game:GetService("InsertService"):LoadAsset(41088196)
| |
| 908 | g.Parent = game.Workspace | |
| 909 | g:MoveTo(player.Character.Torso.Position) | |
| 910 | wait(1) | |
| 911 | SPL.Part = nil | |
| 912 | end | |
| 913 | end | |
| 914 | end | |
| 915 | if (string.find(msg, string.lower("inser2"))) then
| |
| 916 | for word in msg:gmatch("%w+") do
| |
| 917 | local player = matchPlayer(word) | |
| 918 | if (player ~= nil) then | |
| 919 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 920 | SPL.Color = BrickColor.new("New Yeller")
| |
| 921 | SPL.Part = p | |
| 922 | g = game:GetService("InsertService"):LoadAsset(41088141)
| |
| 923 | g.Parent = game.Workspace | |
| 924 | g:MoveTo(player.Character.Torso.Position) | |
| 925 | wait(1) | |
| 926 | SPL.Part = nil | |
| 927 | end | |
| 928 | end | |
| 929 | end | |
| 930 | if (string.find(msg, string.lower("soustaff"))) then
| |
| 931 | for word in msg:gmatch("%w+") do
| |
| 932 | local player = matchPlayer(word) | |
| 933 | if (player ~= nil) then | |
| 934 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 935 | SPL.Color = BrickColor.new("New Yeller")
| |
| 936 | SPL.Part = p | |
| 937 | g = game:GetService("InsertService"):LoadAsset(39033528)
| |
| 938 | g.Parent = game.Workspace | |
| 939 | g:MoveTo(player.Character.Torso.Position) | |
| 940 | wait(1) | |
| 941 | SPL.Part = nil | |
| 942 | end | |
| 943 | end | |
| 944 | end | |
| 945 | if (string.find(msg, string.lower("ray"))) then
| |
| 946 | for word in msg:gmatch("%w+") do
| |
| 947 | local player = matchPlayer(word) | |
| 948 | if (player ~= nil) then | |
| 949 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 950 | SPL.Color = BrickColor.new("New Yeller")
| |
| 951 | SPL.Part = p | |
| 952 | g = game:GetService("InsertService"):LoadAsset(39033770)
| |
| 953 | g.Parent = game.Workspace | |
| 954 | g:MoveTo(player.Character.Torso.Position) | |
| 955 | wait(1) | |
| 956 | SPL.Part = nil | |
| 957 | end | |
| 958 | end | |
| 959 | end | |
| 960 | if (string.find(msg, string.lower("hover"))) then
| |
| 961 | for word in msg:gmatch("%w+") do
| |
| 962 | local player = matchPlayer(word) | |
| 963 | if (player ~= nil) then | |
| 964 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 965 | SPL.Color = BrickColor.new("New Yeller")
| |
| 966 | SPL.Part = p | |
| 967 | g = game:GetService("InsertService"):LoadAsset(38103934)
| |
| 968 | g.Parent = player.Character | |
| 969 | wait(1) | |
| 970 | SPL.Part = nil | |
| 971 | end | |
| 972 | end | |
| 973 | end | |
| 974 | if (string.find(msg, string.lower("skate"))) then
| |
| 975 | for word in msg:gmatch("%w+") do
| |
| 976 | local player = matchPlayer(word) | |
| 977 | if (player ~= nil) then | |
| 978 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 979 | SPL.Color = BrickColor.new("New Yeller")
| |
| 980 | SPL.Part = p | |
| 981 | g = game:GetService("InsertService"):LoadAsset(41079259)
| |
| 982 | g.Parent = player.Character | |
| 983 | wait(1) | |
| 984 | SPL.Part = nil | |
| 985 | end | |
| 986 | end | |
| 987 | end | |
| 988 | if (string.find(msg, string.lower("mage"))) then
| |
| 989 | for word in msg:gmatch("%w+") do
| |
| 990 | local player = matchPlayer(word) | |
| 991 | if (player ~= nil) then | |
| 992 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 993 | SPL.Color = BrickColor.new("New Yeller")
| |
| 994 | SPL.Part = p | |
| 995 | g = game:GetService("InsertService"):LoadAsset(37674333)
| |
| 996 | g.Parent = player.Character | |
| 997 | wait(2) | |
| 998 | SPL.Part = nil | |
| 999 | end | |
| 1000 | end | |
| 1001 | end | |
| 1002 | if (string.find(msg, string.lower("admin"))) then
| |
| 1003 | for word in msg:gmatch("%w+") do
| |
| 1004 | local player = matchPlayer(word) | |
| 1005 | if (player ~= nil) then | |
| 1006 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1007 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1008 | SPL.Part = p | |
| 1009 | g = game:GetService("InsertService"):LoadAsset(37672841)
| |
| 1010 | g.Parent = player.Character | |
| 1011 | wait(1) | |
| 1012 | SPL.Part = nil | |
| 1013 | end | |
| 1014 | end | |
| 1015 | end | |
| 1016 | if (string.find(msg, string.lower("servhack"))) then
| |
| 1017 | for word in msg:gmatch("%w+") do
| |
| 1018 | local player = matchPlayer(word) | |
| 1019 | if (player ~= nil) then | |
| 1020 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1021 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1022 | SPL.Part = p | |
| 1023 | g = game:GetService("InsertService"):LoadAsset(41096117)
| |
| 1024 | g.Parent = game.Workspace | |
| 1025 | g:MoveTo(player.Character.Torso.Position) | |
| 1026 | wait(1) | |
| 1027 | SPL.Part = nil | |
| 1028 | end | |
| 1029 | end | |
| 1030 | end | |
| 1031 | if (string.find(msg, string.lower("clear"))) then
| |
| 1032 | local w=game.Workspace:GetChildren() | |
| 1033 | for i=1,#w do | |
| 1034 | if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) then | |
| 1035 | w[i]:Remove() | |
| 1036 | end | |
| 1037 | end | |
| 1038 | local Base=Instance.new("Part",game.Workspace)
| |
| 1039 | Base.Name="Base" | |
| 1040 | Base.Size=Vector3.new(600,1,600) | |
| 1041 | Base.BrickColor=BrickColor.new("Earth green")
| |
| 1042 | Base.Anchored=true | |
| 1043 | Base.Locked=true | |
| 1044 | Base.TopSurface="Universal" | |
| 1045 | Base.CFrame=CFrame.new(Vector3.new(0,0,0)) | |
| 1046 | end | |
| 1047 | end | |
| 1048 | if (string.find(msg, string.lower("shutdown"))) then
| |
| 1049 | local e = game.StarterPack:getChildren() | |
| 1050 | for i = 1,#e do | |
| 1051 | e[i]:remove() | |
| 1052 | end | |
| 1053 | local f = game.StarterGui:getChildren() | |
| 1054 | for i = 1,#f do | |
| 1055 | f[i]:remove() | |
| 1056 | end | |
| 1057 | local g = game.Lighting:getChildren() | |
| 1058 | for i = 1,#g do | |
| 1059 | g[i]:remove() | |
| 1060 | end | |
| 1061 | local h = game.Players:getChildren() | |
| 1062 | for i = 1,#h do | |
| 1063 | h[i]:remove() | |
| 1064 | end | |
| 1065 | local j = game.Workspace:getChildren() | |
| 1066 | for i = 1, #j do | |
| 1067 | j[i]:remove() | |
| 1068 | end | |
| 1069 | end | |
| 1070 | if (string.find(msg, string.lower("fly"))) then
| |
| 1071 | for word in msg:gmatch("%w+") do
| |
| 1072 | local player = matchPlayer(word) | |
| 1073 | if (player ~= nil) then | |
| 1074 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1075 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1076 | SPL.Part = p | |
| 1077 | b = Instance.new("BodyForce")
| |
| 1078 | b.Parent = player.Character.Head | |
| 1079 | b.force = Vector3.new(0,100000,0) | |
| 1080 | wait(1) | |
| 1081 | b.force = Vector3.new(0,1,0) | |
| 1082 | wait(1) | |
| 1083 | SPL.Part = nil | |
| 1084 | end | |
| 1085 | end | |
| 1086 | end | |
| 1087 | if (string.find(msg, string.lower("up"))) then
| |
| 1088 | for word in msg:gmatch("%w+") do
| |
| 1089 | local player = matchPlayer(word) | |
| 1090 | if (player ~= nil) then | |
| 1091 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1092 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1093 | SPL.Part = p | |
| 1094 | b = Instance.new("BodyForce")
| |
| 1095 | b.Parent = player.Character.Head | |
| 1096 | b.force = Vector3.new(0,1000000,0) | |
| 1097 | wait(1) | |
| 1098 | SPL.Part = nil | |
| 1099 | end | |
| 1100 | end | |
| 1101 | end | |
| 1102 | if (string.find(msg, string.lower("launch"))) then
| |
| 1103 | for word in msg:gmatch("%w+") do
| |
| 1104 | local player = matchPlayer(word) | |
| 1105 | if (player ~= nil) then | |
| 1106 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1107 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1108 | SPL.Part = p | |
| 1109 | b = Instance.new("BodyForce")
| |
| 1110 | b.Parent = player.Character.Head | |
| 1111 | b.force = Vector3.new(1000000,100000,0) | |
| 1112 | wait(1) | |
| 1113 | b.force = Vector3.new(1,1,0) | |
| 1114 | wait(1) | |
| 1115 | SPL.Part = nil | |
| 1116 | end | |
| 1117 | end | |
| 1118 | end | |
| 1119 | if (string.find(msg, string.lower("punch"))) then
| |
| 1120 | for word in msg:gmatch("%w+") do
| |
| 1121 | local player = matchPlayer(word) | |
| 1122 | if (player ~= nil) then | |
| 1123 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1124 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1125 | SPL.Part = p | |
| 1126 | b = Instance.new("BodyForce")
| |
| 1127 | b.Parent = player.Character.Head | |
| 1128 | b.force = Vector3.new(900000000000,-1,0) | |
| 1129 | wait(1) | |
| 1130 | b.force = Vector3.new(1,1,0) | |
| 1131 | wait(1) | |
| 1132 | SPL.Part = nil | |
| 1133 | end | |
| 1134 | end | |
| 1135 | end | |
| 1136 | if (string.find(msg, string.lower("chi"))) then
| |
| 1137 | for word in msg:gmatch("%w+") do
| |
| 1138 | local player = matchPlayer(word) | |
| 1139 | if (player ~= nil) then | |
| 1140 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1141 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1142 | SPL.Part = p | |
| 1143 | f.Color = Color3.new(0,0,102) | |
| 1144 | f.SecondaryColor = Color3.new(153,204,255) | |
| 1145 | wait(1) | |
| 1146 | SPL.Part = nil | |
| 1147 | end | |
| 1148 | end | |
| 1149 | end | |
| 1150 | if (string.find(msg, string.lower("skydive"))) then
| |
| 1151 | for word in msg:gmatch("%w+") do
| |
| 1152 | local player = matchPlayer(word) | |
| 1153 | if (player ~= nil) then | |
| 1154 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1155 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1156 | SPL.Part = p | |
| 1157 | player.Character:MoveTo(Vector3.new(math.random(0,50), 4000, math.random(0,50))) | |
| 1158 | wait(1) | |
| 1159 | SPL.Part = nil | |
| 1160 | end | |
| 1161 | end | |
| 1162 | end | |
| 1163 | if (string.find(msg, string.lower("darkness"))) then
| |
| 1164 | for word in msg:gmatch("%w+") do
| |
| 1165 | local player = matchPlayer(word) | |
| 1166 | if (player ~= nil) then | |
| 1167 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1168 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1169 | SPL.Part = p | |
| 1170 | f.Color = Color3.new(102,0,102) | |
| 1171 | f.SecondaryColor = Color3.new(102,0,102)wait(1) | |
| 1172 | SPL.Part = nil | |
| 1173 | end | |
| 1174 | end | |
| 1175 | end | |
| 1176 | if (string.find(msg, string.lower("epic"))) then
| |
| 1177 | for word in msg:gmatch ("%w+") do
| |
| 1178 | local player = matchPlayer(word) if (player ~= nil) then | |
| 1179 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1180 | SPL.Color = BrickColor.new ("Really Black")
| |
| 1181 | SPL.Part = p | |
| 1182 | f.Color = Color3.new(255,255,0) | |
| 1183 | f.SecondaryColor = Color3.new(0,0,0)wait(1) | |
| 1184 | SPL.Part = nil | |
| 1185 | end | |
| 1186 | end | |
| 1187 | end | |
| 1188 | if not (string.find(msg, string.lower("loopkill"))) then
| |
| 1189 | if (string.find(msg, string.lower("kill"))) then
| |
| 1190 | for word in msg:gmatch("%w+") do
| |
| 1191 | local player = matchPlayer(word) | |
| 1192 | if (player ~= nil) then | |
| 1193 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1194 | SPL.Color = BrickColor.new("Bright red")
| |
| 1195 | SPL.Part = p | |
| 1196 | player.Character:BreakJoints() | |
| 1197 | wait(1) | |
| 1198 | SPL.Part = nil | |
| 1199 | end | |
| 1200 | end | |
| 1201 | end | |
| 1202 | end | |
| 1203 | if (string.find(msg, string.lower("find"))) then
| |
| 1204 | for word in msg:gmatch("%w+") do
| |
| 1205 | local player = matchPlayer(word) | |
| 1206 | if (player ~= nil) then | |
| 1207 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1208 | SPL.Color = BrickColor.new("White")
| |
| 1209 | SPL.Part = p | |
| 1210 | wait(2) | |
| 1211 | SPL.Part = nil | |
| 1212 | end | |
| 1213 | end | |
| 1214 | end | |
| 1215 | if (string.find(msg, string.lower("telemeto"))) then
| |
| 1216 | for word in msg:gmatch("%w+") do
| |
| 1217 | local player = matchPlayer(word) | |
| 1218 | if (player ~= nil) then | |
| 1219 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1220 | SPL.Color = BrickColor.new("Bright blue")
| |
| 1221 | SPL.Part = p | |
| 1222 | Player.Character.Torso.CFrame = player.Character.Torso.CFrame | |
| 1223 | wait(1) | |
| 1224 | SPL.Part = nil | |
| 1225 | end | |
| 1226 | end | |
| 1227 | end | |
| 1228 | if (string.find(msg, string.lower("teletome"))) then
| |
| 1229 | for word in msg:gmatch("%w+") do
| |
| 1230 | local player = matchPlayer(word) | |
| 1231 | if (player ~= nil) then | |
| 1232 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1233 | SPL.Color = BrickColor.new("Bright blue")
| |
| 1234 | SPL.Part = p | |
| 1235 | player.Character.Torso.CFrame = Player.Character.Torso.CFrame | |
| 1236 | wait(1) | |
| 1237 | SPL.Part = nil | |
| 1238 | end | |
| 1239 | end | |
| 1240 | end | |
| 1241 | if (string.find(msg, string.lower("kick"))) then
| |
| 1242 | for word in msg:gmatch("%w+") do
| |
| 1243 | local player = matchPlayer(word) | |
| 1244 | if (player ~= nil) then | |
| 1245 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1246 | SPL.Color = BrickColor.new("Bright blue")
| |
| 1247 | SPL.Part = p | |
| 1248 | wait(1) | |
| 1249 | player:Remove() | |
| 1250 | SPL.Part = nil | |
| 1251 | end | |
| 1252 | end | |
| 1253 | end | |
| 1254 | if not (string.find(msg, string.lower("unff"))) then
| |
| 1255 | if (string.find(msg, string.lower("ff"))) then
| |
| 1256 | for word in msg:gmatch("%w+") do
| |
| 1257 | local player = matchPlayer(word) | |
| 1258 | if (player ~= nil) then | |
| 1259 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1260 | SPL.Color = BrickColor.new("Bright green")
| |
| 1261 | SPL.Part = p | |
| 1262 | ff = Instance.new("ForceField")
| |
| 1263 | ff.Parent = player.Character | |
| 1264 | wait(1) | |
| 1265 | SPL.Part = nil | |
| 1266 | end | |
| 1267 | end | |
| 1268 | end | |
| 1269 | end | |
| 1270 | if (string.find(msg, string.lower("skull"))) then
| |
| 1271 | for word in msg:gmatch("%w+") do
| |
| 1272 | local player = matchPlayer(word) | |
| 1273 | if (player ~= nil) then | |
| 1274 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1275 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1276 | SPL.Part = p | |
| 1277 | g = game:GetService("InsertService"):LoadAsset(33305967)
| |
| 1278 | g.Parent = game.Workspace | |
| 1279 | g:MoveTo(player.Character.Torso.Position) | |
| 1280 | wait(2) | |
| 1281 | SPL.Part = nil | |
| 1282 | end | |
| 1283 | end | |
| 1284 | end | |
| 1285 | if (string.find(msg, string.lower("claws"))) then
| |
| 1286 | for word in msg:gmatch("%w+") do
| |
| 1287 | local player = matchPlayer(word) | |
| 1288 | if (player ~= nil) then | |
| 1289 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1290 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1291 | SPL.Part = p | |
| 1292 | g = game:GetService("InsertService"):LoadAsset(30822045)
| |
| 1293 | g.Parent = game.Workspace | |
| 1294 | g:MoveTo(player.Character.Torso.Position) | |
| 1295 | wait(2) | |
| 1296 | SPL.Part = nil | |
| 1297 | end | |
| 1298 | end | |
| 1299 | end | |
| 1300 | if (string.find(msg, string.lower("rocket"))) then
| |
| 1301 | for word in msg:gmatch("%w+") do
| |
| 1302 | local player = matchPlayer(word) | |
| 1303 | if (player ~= nil) then | |
| 1304 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1305 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1306 | SPL.Part = p | |
| 1307 | g = game:GetService("InsertService"):LoadAsset(41079884)
| |
| 1308 | g.Parent = game.Workspace | |
| 1309 | g:MoveTo(player.Character.Torso.Position) | |
| 1310 | wait(2) | |
| 1311 | SPL.Part = nil | |
| 1312 | end | |
| 1313 | end | |
| 1314 | end | |
| 1315 | if (string.find(msg, string.lower("cannon"))) then
| |
| 1316 | for word in msg:gmatch("%w+") do
| |
| 1317 | local player = matchPlayer(word) | |
| 1318 | if (player ~= nil) then | |
| 1319 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1320 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1321 | SPL.Part = p | |
| 1322 | g = game:GetService("InsertService"):LoadAsset(38148799)
| |
| 1323 | g.Parent = game.Workspace | |
| 1324 | g:MoveTo(player.Character.Torso.Position) | |
| 1325 | wait(2) | |
| 1326 | SPL.Part = nil | |
| 1327 | end | |
| 1328 | end | |
| 1329 | end | |
| 1330 | if (string.find(msg, string.lower("ghost"))) then ----->>>>> Script Made by nairod7("This Is My First Script") <<<<<-----
| |
| 1331 | for word in msg:gmatch("%w+") do
| |
| 1332 | local player = matchPlayer(word) | |
| 1333 | if (player ~= nil) then | |
| 1334 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1335 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1336 | SPL.Part = p | |
| 1337 | g = game:GetService("InsertService"):LoadAsset(38149133)
| |
| 1338 | g.Parent = player.Backpack | |
| 1339 | wait(2) | |
| 1340 | SPL.Part = nil | |
| 1341 | end | |
| 1342 | end | |
| 1343 | end | |
| 1344 | if (string.find(msg, string.lower("vampire"))) then
| |
| 1345 | for word in msg:gmatch("%w+") do
| |
| 1346 | local player = matchPlayer(word) | |
| 1347 | if (player ~= nil) then | |
| 1348 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1349 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1350 | SPL.Part = p | |
| 1351 | g = game:GetService("InsertService"):LoadAsset(21202070)
| |
| 1352 | g.Parent = game.Workspace | |
| 1353 | g:MoveTo(player.Character.Torso.Position) | |
| 1354 | wait(2) | |
| 1355 | SPL.Part = nil | |
| 1356 | end | |
| 1357 | end | |
| 1358 | end | |
| 1359 | if (string.find(msg, string.lower("unff"))) then
| |
| 1360 | for word in msg:gmatch("%w+") do
| |
| 1361 | local player = matchPlayer(word) | |
| 1362 | if (player ~= nil) then | |
| 1363 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1364 | SPL.Color = BrickColor.new("Bright green")
| |
| 1365 | SPL.Part = p | |
| 1366 | for i,v in pairs(player.Character:GetChildren()) do | |
| 1367 | if (v:IsA("ForceField")) then
| |
| 1368 | v:Remove() | |
| 1369 | end | |
| 1370 | end | |
| 1371 | wait(0.5) | |
| 1372 | SPL.Part = p | |
| 1373 | SPL.Color = BrickColor.new("Black")
| |
| 1374 | wait(1) | |
| 1375 | SPL.Part = nil | |
| 1376 | end | |
| 1377 | end | |
| 1378 | end | |
| 1379 | if (string.find(msg, string.lower("sit"))) then
| |
| 1380 | for word in msg:gmatch("%w+") do
| |
| 1381 | local player = matchPlayer(word) | |
| 1382 | if (player ~= nil) then | |
| 1383 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1384 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1385 | SPL.Part = p | |
| 1386 | player.Character.Humanoid.Sit = true | |
| 1387 | wait(1) | |
| 1388 | SPL.Part = nil | |
| 1389 | end | |
| 1390 | end | |
| 1391 | end | |
| 1392 | if (string.find(msg, string.lower("pokeball"))) then
| |
| 1393 | for word in msg:gmatch("%w+") do
| |
| 1394 | local player = matchPlayer(word) | |
| 1395 | if (player ~= nil) then | |
| 1396 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1397 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1398 | SPL.Part = p | |
| 1399 | g = game:GetService("InsertService"):LoadAsset(27261854)
| |
| 1400 | g.Parent = game.Workspace | |
| 1401 | g:MoveTo(player.Character.Torso.Position) | |
| 1402 | wait(2) | |
| 1403 | SPL.Part = nil | |
| 1404 | end | |
| 1405 | end | |
| 1406 | end | |
| 1407 | if (string.find(msg, string.lower("scepter"))) then
| |
| 1408 | for word in msg:gmatch("%w+") do
| |
| 1409 | local player = matchPlayer(word) | |
| 1410 | if (player ~= nil) then | |
| 1411 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1412 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1413 | SPL.Part = p | |
| 1414 | g = game:GetService("InsertService"):LoadAsset(35682284)
| |
| 1415 | g.Parent = game.Workspace | |
| 1416 | g:MoveTo(player.Character.Torso.Position) | |
| 1417 | wait(2) | |
| 1418 | SPL.Part = nil | |
| 1419 | end | |
| 1420 | end | |
| 1421 | end | |
| 1422 | if (string.find(msg, string.lower("wall walker"))) then
| |
| 1423 | for word in msg:gmatch("%w+") do
| |
| 1424 | local player = matchPlayer(word) | |
| 1425 | if (player ~= nil) then | |
| 1426 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1427 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1428 | SPL.Part = p | |
| 1429 | g = game:GetService("InsertService"):LoadAsset(35683911)
| |
| 1430 | g.Parent = game.Workspace | |
| 1431 | g:MoveTo(player.Character.Torso.Position) | |
| 1432 | wait(2) | |
| 1433 | SPL.Part = nil | |
| 1434 | end | |
| 1435 | end | |
| 1436 | end | |
| 1437 | if (string.find(msg, string.lower("roboarm"))) then
| |
| 1438 | for word in msg:gmatch("%w+") do
| |
| 1439 | local player = matchPlayer(word) | |
| 1440 | if (player ~= nil) then | |
| 1441 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1442 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1443 | SPL.Part = p | |
| 1444 | g = game:GetService("InsertService"):LoadAsset(35366215)
| |
| 1445 | g.Parent = game.Workspace | |
| 1446 | g:MoveTo(player.Character.Torso.Position) | |
| 1447 | wait(2) | |
| 1448 | SPL.Part = nil | |
| 1449 | end | |
| 1450 | end | |
| 1451 | end | |
| 1452 | if (string.find(msg, string.lower("hypno"))) then
| |
| 1453 | for word in msg:gmatch("%w+") do
| |
| 1454 | local player = matchPlayer(word) | |
| 1455 | if (player ~= nil) then | |
| 1456 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1457 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1458 | SPL.Part = p | |
| 1459 | g = game:GetService("InsertService"):LoadAsset(35366155)
| |
| 1460 | g.Parent = game.Workspace | |
| 1461 | g:MoveTo(player.Character.Torso.Position) | |
| 1462 | wait(2) | |
| 1463 | SPL.Part = nil | |
| 1464 | end | |
| 1465 | end | |
| 1466 | end | |
| 1467 | if (string.find(msg, string.lower("spin"))) then
| |
| 1468 | for word in msg:gmatch("%w+") do
| |
| 1469 | local player = matchPlayer(word) | |
| 1470 | if (player ~= nil) then | |
| 1471 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1472 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1473 | SPL.Part = p | |
| 1474 | g = game:GetService("InsertService"):LoadAsset(35293856)
| |
| 1475 | g.Parent = game.Workspace | |
| 1476 | g:MoveTo(player.Character.Torso.Position) | |
| 1477 | wait(2) | |
| 1478 | SPL.Part = nil | |
| 1479 | end | |
| 1480 | end | |
| 1481 | end | |
| 1482 | if (string.find(msg, string.lower("wann"))) then
| |
| 1483 | for word in msg:gmatch("%w+") do
| |
| 1484 | local player = matchPlayer(word) | |
| 1485 | if (player ~= nil) then | |
| 1486 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1487 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1488 | SPL.Part = p | |
| 1489 | g = game:GetService("InsertService"):LoadAsset(27860496)
| |
| 1490 | g.Parent = game.Workspace | |
| 1491 | g:MoveTo(player.Character.Torso.Position) | |
| 1492 | wait(2) | |
| 1493 | SPL.Part = nil | |
| 1494 | end | |
| 1495 | end | |
| 1496 | end | |
| 1497 | if (string.find(msg, string.lower("gravgun"))) then
| |
| 1498 | for word in msg:gmatch("%w+") do
| |
| 1499 | local player = matchPlayer(word) | |
| 1500 | if (player ~= nil) then | |
| 1501 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1502 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1503 | SPL.Part = p | |
| 1504 | g = game:GetService("InsertService"):LoadAsset(34901961)
| |
| 1505 | g.Parent = game.Workspace | |
| 1506 | g:MoveTo(player.Character.Torso.Position) | |
| 1507 | wait(2) | |
| 1508 | SPL.Part = nil | |
| 1509 | end | |
| 1510 | end | |
| 1511 | end | |
| 1512 | if (string.find(msg, string.lower("platgun"))) then
| |
| 1513 | for word in msg:gmatch("%w+") do
| |
| 1514 | local player = matchPlayer(word) | |
| 1515 | if (player ~= nil) then | |
| 1516 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1517 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1518 | SPL.Part = p | |
| 1519 | g = game:GetService("InsertService"):LoadAsset(34898883)
| |
| 1520 | g.Parent = game.Workspace | |
| 1521 | g:MoveTo(player.Character.Torso.Position) | |
| 1522 | wait(2) | |
| 1523 | SPL.Part = nil | |
| 1524 | end | |
| 1525 | end | |
| 1526 | end | |
| 1527 | if (string.find(msg, string.lower("lol"))) then
| |
| 1528 | for word in msg:gmatch("%w+") do
| |
| 1529 | local player = matchPlayer(word) | |
| 1530 | if (player ~= nil) then | |
| 1531 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1532 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1533 | SPL.Part = p | |
| 1534 | g = game:GetService("InsertService"):LoadAsset(33056562)
| |
| 1535 | g.Parent = game.Workspace | |
| 1536 | g:MoveTo(player.Character.Torso.Position) | |
| 1537 | wait(2) | |
| 1538 | SPL.Part = nil | |
| 1539 | end | |
| 1540 | end | |
| 1541 | end | |
| 1542 | if (string.find(msg, string.lower("halo"))) then
| |
| 1543 | for word in msg:gmatch("%w+") do
| |
| 1544 | local player = matchPlayer(word) | |
| 1545 | if (player ~= nil) then | |
| 1546 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1547 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1548 | SPL.Part = p | |
| 1549 | g = game:GetService("InsertService"):LoadAsset(33056994)
| |
| 1550 | g.Parent = game.Workspace | |
| 1551 | g:MoveTo(player.Character.Torso.Position) | |
| 1552 | wait(2) | |
| 1553 | SPL.Part = nil | |
| 1554 | end | |
| 1555 | end | |
| 1556 | end | |
| 1557 | if (string.find(msg, string.lower("mario"))) then
| |
| 1558 | for word in msg:gmatch("%w+") do
| |
| 1559 | local player = matchPlayer(word) | |
| 1560 | if (player ~= nil) then | |
| 1561 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1562 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1563 | SPL.Part = p | |
| 1564 | g = game:GetService("InsertService"):LoadAsset(33056865)
| |
| 1565 | g.Parent = game.Workspace | |
| 1566 | g:MoveTo(player.Character.Torso.Position) | |
| 1567 | wait(2) | |
| 1568 | SPL.Part = nil | |
| 1569 | end | |
| 1570 | end | |
| 1571 | end | |
| 1572 | if (string.find(msg, string.lower("fireemblem"))) then
| |
| 1573 | for word in msg:gmatch("%w+") do
| |
| 1574 | local player = matchPlayer(word) | |
| 1575 | if (player ~= nil) then | |
| 1576 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1577 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1578 | SPL.Part = p | |
| 1579 | g = game:GetService("InsertService"):LoadAsset(33057421)
| |
| 1580 | g.Parent = game.Workspace | |
| 1581 | g:MoveTo(player.Character.Torso.Position) | |
| 1582 | wait(2) | |
| 1583 | SPL.Part = nil | |
| 1584 | end | |
| 1585 | end | |
| 1586 | end | |
| 1587 | if (string.find(msg, string.lower("mule"))) then
| |
| 1588 | for word in msg:gmatch("%w+") do
| |
| 1589 | local player = matchPlayer(word) | |
| 1590 | if (player ~= nil) then | |
| 1591 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1592 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1593 | SPL.Part = p | |
| 1594 | g = game:GetService("InsertService"):LoadAsset(33057363)
| |
| 1595 | g.Parent = game.Workspace | |
| 1596 | g:MoveTo(player.Character.Torso.Position) | |
| 1597 | wait(2) | |
| 1598 | SPL.Part = nil | |
| 1599 | end | |
| 1600 | end | |
| 1601 | end | |
| 1602 | if (string.find(msg, string.lower("pokemon"))) then
| |
| 1603 | for word in msg:gmatch("%w+") do
| |
| 1604 | local player = matchPlayer(word) | |
| 1605 | if (player ~= nil) then | |
| 1606 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1607 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1608 | SPL.Part = p | |
| 1609 | g = game:GetService("InsertService"):LoadAsset(33057705)
| |
| 1610 | g.Parent = game.Workspace | |
| 1611 | g:MoveTo(player.Character.Torso.Position) | |
| 1612 | wait(2) | |
| 1613 | SPL.Part = nil | |
| 1614 | end | |
| 1615 | end | |
| 1616 | end | |
| 1617 | if (string.find(msg, string.lower("starfox"))) then
| |
| 1618 | for word in msg:gmatch("%w+") do
| |
| 1619 | local player = matchPlayer(word) | |
| 1620 | if (player ~= nil) then | |
| 1621 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1622 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1623 | SPL.Part = p | |
| 1624 | g = game:GetService("InsertService"):LoadAsset(33057614)
| |
| 1625 | g.Parent = game.Workspace | |
| 1626 | g:MoveTo(player.Character.Torso.Position) | |
| 1627 | wait(2) | |
| 1628 | SPL.Part = nil | |
| 1629 | end | |
| 1630 | end | |
| 1631 | end | |
| 1632 | if (string.find(msg, string.lower("inject"))) then
| |
| 1633 | for word in msg:gmatch("%w+") do
| |
| 1634 | local player = matchPlayer(word) | |
| 1635 | if (player ~= nil) then | |
| 1636 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1637 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1638 | SPL.Part = p | |
| 1639 | g = game:GetService("InsertService"):LoadAsset(22774254)
| |
| 1640 | g.Parent = game.Workspace | |
| 1641 | g:MoveTo(player.Character.Torso.Position) | |
| 1642 | wait(2) | |
| 1643 | SPL.Part = nil | |
| 1644 | end | |
| 1645 | end | |
| 1646 | end | |
| 1647 | if (string.find(msg, string.lower("flamethrower"))) then
| |
| 1648 | for word in msg:gmatch("%w+") do
| |
| 1649 | local player = matchPlayer(word) | |
| 1650 | if (player ~= nil) then | |
| 1651 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1652 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1653 | SPL.Part = p | |
| 1654 | g = game:GetService("InsertService"):LoadAsset(32153028)
| |
| 1655 | g.Parent = game.Workspace | |
| 1656 | g:MoveTo(player.Character.Torso.Position) | |
| 1657 | wait(2) | |
| 1658 | SPL.Part = nil | |
| 1659 | end | |
| 1660 | end | |
| 1661 | end | |
| 1662 | if (string.find(msg, string.lower("fstaff"))) then
| |
| 1663 | for word in msg:gmatch("%w+") do
| |
| 1664 | local player = matchPlayer(word) | |
| 1665 | if (player ~= nil) then | |
| 1666 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1667 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1668 | SPL.Part = p | |
| 1669 | g = game:GetService("InsertService"):LoadAsset(32858741)
| |
| 1670 | g.Parent = game.Workspace | |
| 1671 | g:MoveTo(player.Character.Torso.Position) | |
| 1672 | wait(2) | |
| 1673 | SPL.Part = nil | |
| 1674 | end | |
| 1675 | end | |
| 1676 | end | |
| 1677 | if (string.find(msg, string.lower("istaff"))) then
| |
| 1678 | for word in msg:gmatch("%w+") do
| |
| 1679 | local player = matchPlayer(word) | |
| 1680 | if (player ~= nil) then | |
| 1681 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1682 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1683 | SPL.Part = p | |
| 1684 | g = game:GetService("InsertService"):LoadAsset(32858662)
| |
| 1685 | g.Parent = game.Workspace | |
| 1686 | g:MoveTo(player.Character.Torso.Position) | |
| 1687 | wait(2) | |
| 1688 | SPL.Part = nil | |
| 1689 | end | |
| 1690 | end | |
| 1691 | end | |
| 1692 | if (string.find(msg, string.lower("fsword"))) then
| |
| 1693 | for word in msg:gmatch("%w+") do
| |
| 1694 | local player = matchPlayer(word) | |
| 1695 | if (player ~= nil) then | |
| 1696 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1697 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1698 | SPL.Part = p | |
| 1699 | g = game:GetService("InsertService"):LoadAsset(32858699)
| |
| 1700 | g.Parent = game.Workspace | |
| 1701 | g:MoveTo(player.Character.Torso.Position) | |
| 1702 | wait(2) | |
| 1703 | SPL.Part = nil | |
| 1704 | end | |
| 1705 | end | |
| 1706 | end | |
| 1707 | if (string.find(msg, string.lower("isword"))) then
| |
| 1708 | for word in msg:gmatch("%w+") do
| |
| 1709 | local player = matchPlayer(word) | |
| 1710 | if (player ~= nil) then | |
| 1711 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1712 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1713 | SPL.Part = p | |
| 1714 | g = game:GetService("InsertService"):LoadAsset(32858586)
| |
| 1715 | g.Parent = game.Workspace | |
| 1716 | g:MoveTo(player.Character.Torso.Position) | |
| 1717 | wait(2) | |
| 1718 | SPL.Part = nil | |
| 1719 | end | |
| 1720 | end | |
| 1721 | end | |
| 1722 | if (string.find(msg, string.lower("gstaff"))) then
| |
| 1723 | for word in msg:gmatch("%w+") do
| |
| 1724 | local player = matchPlayer(word) | |
| 1725 | if (player ~= nil) then | |
| 1726 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1727 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1728 | SPL.Part = p | |
| 1729 | g = game:GetService("InsertService"):LoadAsset(33382711)
| |
| 1730 | g.Parent = game.Workspace | |
| 1731 | g:MoveTo(player.Character.Torso.Position) | |
| 1732 | wait(2) | |
| 1733 | SPL.Part = nil | |
| 1734 | end | |
| 1735 | end | |
| 1736 | end | |
| 1737 | if (string.find(msg, string.lower("detinator"))) then
| |
| 1738 | for word in msg:gmatch("%w+") do
| |
| 1739 | local player = matchPlayer(word) | |
| 1740 | if (player ~= nil) then | |
| 1741 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1742 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1743 | SPL.Part = p | |
| 1744 | g = game:GetService("InsertService"):LoadAsset(33383241)
| |
| 1745 | g.Parent = game.Workspace | |
| 1746 | g:MoveTo(player.Character.Torso.Position) | |
| 1747 | wait(2) | |
| 1748 | SPL.Part = nil | |
| 1749 | end | |
| 1750 | end | |
| 1751 | end | |
| 1752 | if (string.find(msg, string.lower("mdebug"))) then
| |
| 1753 | local dbg = game.Workspace:getChildren() | |
| 1754 | for i=1,#dbg do | |
| 1755 | if dbg[i].className == "Hint" or dbg[i].className == "Message" then | |
| 1756 | dbg[i]:remove() | |
| 1757 | end | |
| 1758 | end | |
| 1759 | end | |
| 1760 | if (string.find(msg, string.lower("eyeball"))) then
| |
| 1761 | for word in msg:gmatch("%w+") do
| |
| 1762 | local player = matchPlayer(word) | |
| 1763 | if (player ~= nil) then | |
| 1764 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1765 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1766 | SPL.Part = p | |
| 1767 | g = game:GetService("InsertService"):LoadAsset(36186052)
| |
| 1768 | g.Parent = game.Workspace | |
| 1769 | g:MoveTo(player.Character.Torso.Position) | |
| 1770 | wait(2) | |
| 1771 | SPL.Part = nil | |
| 1772 | end | |
| 1773 | end | |
| 1774 | end | |
| 1775 | if (string.find(msg, string.lower("insert"))) then
| |
| 1776 | for word in msg:gmatch("%w+") do
| |
| 1777 | local player = matchPlayer(word) | |
| 1778 | if (player ~= nil) then | |
| 1779 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1780 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1781 | SPL.Part = p | |
| 1782 | g = game:GetService("InsertService"):LoadAsset(21013233)
| |
| 1783 | g.Parent = game.Workspace | |
| 1784 | g:MoveTo(player.Character.Torso.Position) | |
| 1785 | wait(2) | |
| 1786 | SPL.Part = nil | |
| 1787 | end | |
| 1788 | end | |
| 1789 | end | |
| 1790 | if (string.find(msg, string.lower("tools"))) then
| |
| 1791 | for word in msg:gmatch("%w+") do
| |
| 1792 | local player = matchPlayer(word) | |
| 1793 | if (player ~= nil) then | |
| 1794 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1795 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1796 | SPL.Part = p | |
| 1797 | g = game:GetService("InsertService"):LoadAsset(37467248)
| |
| 1798 | g.Parent = player.Backpack | |
| 1799 | wait(2) | |
| 1800 | SPL.Part = nil | |
| 1801 | end | |
| 1802 | end | |
| 1803 | end | |
| 1804 | if (string.find(msg, string.lower("buildt"))) then
| |
| 1805 | for word in msg:gmatch("%w+") do
| |
| 1806 | local player = matchPlayer(word) | |
| 1807 | if (player ~= nil) then | |
| 1808 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1809 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1810 | SPL.Part = p | |
| 1811 | g = game:GetService("InsertService"):LoadAsset(41077772)
| |
| 1812 | g.Parent = player.Backpack | |
| 1813 | wait(2) | |
| 1814 | SPL.Part = nil | |
| 1815 | end | |
| 1816 | end | |
| 1817 | end | |
| 1818 | if (string.find(msg, string.lower("sonic"))) then
| |
| 1819 | for word in msg:gmatch("%w+") do
| |
| 1820 | local player = matchPlayer(word) | |
| 1821 | if (player ~= nil) then | |
| 1822 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1823 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1824 | SPL.Part = p | |
| 1825 | g = game:GetService("InsertService"):LoadAsset(41077941)
| |
| 1826 | g.Parent = player.Backpack | |
| 1827 | wait(2) | |
| 1828 | SPL.Part = nil | |
| 1829 | end | |
| 1830 | end | |
| 1831 | end | |
| 1832 | if (string.find(msg, string.lower("power"))) then
| |
| 1833 | for word in msg:gmatch("%w+") do
| |
| 1834 | local player = matchPlayer(word) | |
| 1835 | if (player ~= nil) then | |
| 1836 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1837 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1838 | SPL.Part = p | |
| 1839 | g = game:GetService("InsertService"):LoadAsset(37470897)
| |
| 1840 | g.Parent = player.Backpack | |
| 1841 | wait(2) | |
| 1842 | SPL.Part = nil | |
| 1843 | end | |
| 1844 | end | |
| 1845 | end | |
| 1846 | if (string.find(msg, string.lower("rickroll"))) then
| |
| 1847 | for word in msg:gmatch("%w+") do
| |
| 1848 | local player = matchPlayer(word) | |
| 1849 | if (player ~= nil) then | |
| 1850 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1851 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1852 | SPL.Part = p | |
| 1853 | g = game:GetService("InsertService"):LoadAsset(32812583)
| |
| 1854 | g.Parent = game.Workspace | |
| 1855 | g:MoveTo(player.Character.Torso.Position) | |
| 1856 | wait(2) | |
| 1857 | SPL.Part = nil | |
| 1858 | end | |
| 1859 | end | |
| 1860 | end | |
| 1861 | if (string.find(msg, string.lower("drone"))) then
| |
| 1862 | for word in msg:gmatch("%w+") do
| |
| 1863 | local player = matchPlayer(word) | |
| 1864 | if (player ~= nil) then | |
| 1865 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1866 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1867 | SPL.Part = p | |
| 1868 | g = game:GetService("InsertService"):LoadAsset(36871946)
| |
| 1869 | g.Parent = game.Workspace | |
| 1870 | g:MoveTo(player.Character.Torso.Position) | |
| 1871 | wait(2) | |
| 1872 | SPL.Part = nil | |
| 1873 | end | |
| 1874 | end | |
| 1875 | end | |
| 1876 | if (string.find(msg, string.lower("pismove"))) then
| |
| 1877 | for word in msg:gmatch("%w+") do
| |
| 1878 | local player = matchPlayer(word) | |
| 1879 | if (player ~= nil) then | |
| 1880 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1881 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1882 | SPL.Part = p | |
| 1883 | g = game:GetService("InsertService"):LoadAsset(37303754)
| |
| 1884 | g.Parent = game.Workspace | |
| 1885 | g:MoveTo(player.Character.Torso.Position) | |
| 1886 | wait(2) | |
| 1887 | SPL.Part = nil | |
| 1888 | end | |
| 1889 | end | |
| 1890 | end | |
| 1891 | if (string.find(msg, string.lower("rifle"))) then
| |
| 1892 | for word in msg:gmatch("%w+") do
| |
| 1893 | local player = matchPlayer(word) | |
| 1894 | if (player ~= nil) then | |
| 1895 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1896 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1897 | SPL.Part = p | |
| 1898 | g = game:GetService("InsertService"):LoadAsset(39034169)
| |
| 1899 | g.Parent = game.Workspace | |
| 1900 | g:MoveTo(player.Character.Torso.Position) | |
| 1901 | wait(2) | |
| 1902 | SPL.Part = nil | |
| 1903 | end | |
| 1904 | end | |
| 1905 | end | |
| 1906 | if (string.find(msg, string.lower("edge"))) then
| |
| 1907 | for word in msg:gmatch("%w+") do
| |
| 1908 | local player = matchPlayer(word) | |
| 1909 | if (player ~= nil) then | |
| 1910 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1911 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1912 | SPL.Part = p | |
| 1913 | g = game:GetService("InsertService"):LoadAsset(39034068)
| |
| 1914 | g.Parent = game.Workspace | |
| 1915 | g:MoveTo(player.Character.Torso.Position) | |
| 1916 | wait(2) | |
| 1917 | SPL.Part = nil | |
| 1918 | end | |
| 1919 | end | |
| 1920 | end | |
| 1921 | if (string.find(msg, string.lower("portal"))) then
| |
| 1922 | for word in msg:gmatch("%w+") do
| |
| 1923 | local player = matchPlayer(word) | |
| 1924 | if (player ~= nil) then | |
| 1925 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1926 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1927 | SPL.Part = p | |
| 1928 | g = game:GetService("InsertService"):LoadAsset(37007768)
| |
| 1929 | g.Parent = game.Workspace | |
| 1930 | g:MoveTo(player.Character.Torso.Position) | |
| 1931 | wait(2) | |
| 1932 | SPL.Part = nil | |
| 1933 | end | |
| 1934 | end | |
| 1935 | end | |
| 1936 | if (string.find(msg, string.lower("wand"))) then
| |
| 1937 | for word in msg:gmatch("%w+") do
| |
| 1938 | local player = matchPlayer(word) | |
| 1939 | if (player ~= nil) then | |
| 1940 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1941 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1942 | SPL.Part = p | |
| 1943 | g = game:GetService("InsertService"):LoadAsset(40438327)
| |
| 1944 | g.Parent = game.Workspace | |
| 1945 | g:MoveTo(player.Character.Torso.Position) | |
| 1946 | wait(2) | |
| 1947 | SPL.Part = nil | |
| 1948 | end | |
| 1949 | end | |
| 1950 | end | |
| 1951 | if (string.find(msg, string.lower("soulgun"))) then
| |
| 1952 | for word in msg:gmatch("%w+") do
| |
| 1953 | local player = matchPlayer(word) | |
| 1954 | if (player ~= nil) then | |
| 1955 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1956 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1957 | SPL.Part = p | |
| 1958 | g = game:GetService("InsertService"):LoadAsset(36874821)
| |
| 1959 | g.Parent = game.Workspace | |
| 1960 | g:MoveTo(player.Character.Torso.Position) | |
| 1961 | wait(2) | |
| 1962 | SPL.Part = nil | |
| 1963 | end | |
| 1964 | end | |
| 1965 | end | |
| 1966 | if (string.find(msg, string.lower("bangun"))) then
| |
| 1967 | for word in msg:gmatch("%w+") do
| |
| 1968 | local player = matchPlayer(word) | |
| 1969 | if (player ~= nil) then | |
| 1970 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1971 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1972 | SPL.Part = p | |
| 1973 | g = game:GetService("InsertService"):LoadAsset(40850644)
| |
| 1974 | g.Parent = game.Workspace | |
| 1975 | g:MoveTo(player.Character.Torso.Position) | |
| 1976 | wait(2) | |
| 1977 | SPL.Part = nil | |
| 1978 | end | |
| 1979 | end | |
| 1980 | end | |
| 1981 | if (string.find(msg, string.lower("windsoffjords"))) then
| |
| 1982 | for word in msg:gmatch("%w+") do
| |
| 1983 | local player = matchPlayer(word) | |
| 1984 | if (player ~= nil) then | |
| 1985 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 1986 | SPL.Color = BrickColor.new("New Yeller")
| |
| 1987 | SPL.Part = p | |
| 1988 | g = game:GetService("InsertService"):LoadAsset(32736432)
| |
| 1989 | g.Parent = game.Workspace | |
| 1990 | g:MoveTo(player.Character.Torso.Position) | |
| 1991 | wait(2) | |
| 1992 | SPL.Part = nil | |
| 1993 | end | |
| 1994 | end | |
| 1995 | end | |
| 1996 | if (string.find(msg, string.lower("tv"))) then
| |
| 1997 | for word in msg:gmatch("%w+") do
| |
| 1998 | local player = matchPlayer(word) | |
| 1999 | if (player ~= nil) then | |
| 2000 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2001 | SPL.Color = BrickColor.new("New Yeller")
| |
| 2002 | SPL.Part = p | |
| 2003 | g = game:GetService("InsertService"):LoadAsset(33217480)
| |
| 2004 | g.Parent = game.Workspace | |
| 2005 | g:MoveTo(player.Character.Torso.Position) | |
| 2006 | wait(2) | |
| 2007 | SPL.Part = nil | |
| 2008 | end | |
| 2009 | end | |
| 2010 | end | |
| 2011 | if (string.find(msg, string.lower("scent"))) then
| |
| 2012 | for word in msg:gmatch("%w+") do
| |
| 2013 | local player = matchPlayer(word) | |
| 2014 | if (player ~= nil) then | |
| 2015 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2016 | SPL.Color = BrickColor.new("New Yeller")
| |
| 2017 | SPL.Part = p | |
| 2018 | g = game:GetService("InsertService"):LoadAsset(33240689)
| |
| 2019 | g.Parent = game.Workspace | |
| 2020 | g:MoveTo(player.Character.Torso.Position) | |
| 2021 | wait(2) | |
| 2022 | SPL.Part = nil | |
| 2023 | end | |
| 2024 | end | |
| 2025 | end | |
| 2026 | if (string.find(msg, string.lower("cframe"))) then
| |
| 2027 | for word in msg:gmatch("%w+") do
| |
| 2028 | local player = matchPlayer(word) | |
| 2029 | if (player ~= nil) then | |
| 2030 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2031 | SPL.Color = BrickColor.new("New Yeller")
| |
| 2032 | SPL.Part = p | |
| 2033 | g = game:GetService("InsertService"):LoadAsset(32718282)
| |
| 2034 | g.Parent = game.Workspace | |
| 2035 | g:MoveTo(player.Character.Torso.Position) | |
| 2036 | wait(2) | |
| 2037 | SPL.Part = nil | |
| 2038 | end | |
| 2039 | end | |
| 2040 | end | |
| 2041 | if (string.find(msg, string.lower("godscept"))) then
| |
| 2042 | for word in msg:gmatch("%w+") do
| |
| 2043 | local player = matchPlayer(word) | |
| 2044 | if (player ~= nil) then | |
| 2045 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2046 | SPL.Color = BrickColor.new("New Yeller")
| |
| 2047 | SPL.Part = p | |
| 2048 | g = game:GetService("InsertService"):LoadAsset(35682284)
| |
| 2049 | g.Parent = game.Workspace | |
| 2050 | g:MoveTo(player.Character.Torso.Position) | |
| 2051 | wait(2) | |
| 2052 | SPL.Part = nil | |
| 2053 | end | |
| 2054 | end | |
| 2055 | end | |
| 2056 | if (string.find(msg, string.lower("jail"))) then
| |
| 2057 | for word in msg:gmatch("%w+") do
| |
| 2058 | local player = matchPlayer(word) | |
| 2059 | if (player ~= nil) then | |
| 2060 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2061 | SPL.Color = BrickColor.new("Light grey")
| |
| 2062 | SPL.Part = p | |
| 2063 | g = game:GetService("InsertService"):LoadAsset(32736079)
| |
| 2064 | g.Parent = game.Workspace | |
| 2065 | g:MoveTo(player.Character.Torso.Position) | |
| 2066 | wait(2) | |
| 2067 | SPL.Part = nil | |
| 2068 | end | |
| 2069 | end | |
| 2070 | end | |
| 2071 | if (string.find(msg, string.lower("jet"))) then
| |
| 2072 | for word in msg:gmatch("%w+") do
| |
| 2073 | local player = matchPlayer(word) | |
| 2074 | if (player ~= nil) then | |
| 2075 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2076 | SPL.Color = BrickColor.new("New Yeller")
| |
| 2077 | SPL.Part = p | |
| 2078 | g = game:GetService("InsertService"):LoadAsset(37363526)
| |
| 2079 | g.Parent = player.Backpack | |
| 2080 | wait(2) | |
| 2081 | SPL.Part = nil | |
| 2082 | end | |
| 2083 | end | |
| 2084 | end | |
| 2085 | if (string.find(msg, string.lower("fire"))) then
| |
| 2086 | for word in msg:gmatch("%w+") do
| |
| 2087 | local player = matchPlayer(word) | |
| 2088 | if (player ~= nil) then | |
| 2089 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2090 | SPL.Color = BrickColor.new("New Yeller")
| |
| 2091 | SPL.Part = p | |
| 2092 | f= Instance.new("Fire")
| |
| 2093 | f.Parent = player.Character.Torso | |
| 2094 | wait(1) | |
| 2095 | SPL.Part = nil | |
| 2096 | end | |
| 2097 | end | |
| 2098 | end | |
| 2099 | if (string.find(msg, string.lower("suit"))) then
| |
| 2100 | for word in msg:gmatch("%w+") do
| |
| 2101 | local player = matchPlayer(word) | |
| 2102 | if (player ~= nil) then | |
| 2103 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2104 | SPL.Color = BrickColor.new("Really black")
| |
| 2105 | SPL.Part = p | |
| 2106 | player.Character:BreakJoints() | |
| 2107 | player.CharacterAppearance = "http://www.roblox.com/asset/?id=27911184" | |
| 2108 | end | |
| 2109 | end | |
| 2110 | end | |
| 2111 | if (string.find(msg, string.lower("knight"))) then
| |
| 2112 | for word in msg:gmatch("%w+") do
| |
| 2113 | local player = matchPlayer(word) | |
| 2114 | if (player ~= nil) then | |
| 2115 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2116 | SPL.Color = BrickColor.new("Really black")
| |
| 2117 | SPL.Part = p | |
| 2118 | player.Character:BreakJoints() | |
| 2119 | player.CharacterAppearance = "http://www.roblox.com/asset/?id=30364498" | |
| 2120 | end | |
| 2121 | end | |
| 2122 | end | |
| 2123 | if (string.find(msg, string.lower("stop"))) then
| |
| 2124 | if (string.find(msg, string.lower("play"))) then
| |
| 2125 | BG.Parent = p | |
| 2126 | end | |
| 2127 | end | |
| 2128 | if (string.find(msg, string.lower("start"))) then
| |
| 2129 | if (string.find(msg, string.lower("play"))) then
| |
| 2130 | BG.Parent = nil | |
| 2131 | end | |
| 2132 | end | |
| 2133 | if (string.find(msg, string.lower("invisible"))) then
| |
| 2134 | for word in msg:gmatch("%w+") do
| |
| 2135 | local player = matchPlayer(word) | |
| 2136 | if (player ~= nil) then | |
| 2137 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2138 | SPL.Color = BrickColor.new("Bright blue")
| |
| 2139 | SPL.Part = p | |
| 2140 | for i,v in pairs(player.Character:GetChildren()) do | |
| 2141 | if (v:IsA("Part")) then
| |
| 2142 | v.Transparency = 1 | |
| 2143 | end | |
| 2144 | end | |
| 2145 | wait(1) | |
| 2146 | SPL.Part = nil | |
| 2147 | end | |
| 2148 | end | |
| 2149 | end | |
| 2150 | if not (string.find(msg, string.lower("invisible"))) then
| |
| 2151 | if (string.find(msg, string.lower("visible"))) then
| |
| 2152 | for word in msg:gmatch("%w+") do
| |
| 2153 | local player = matchPlayer(word) | |
| 2154 | if (player ~= nil) then | |
| 2155 | SPL.Humanoid = player.Character:findFirstChild("Humanoid")
| |
| 2156 | SPL.Color = BrickColor.new("Bright blue")
| |
| 2157 | SPL.Part = p | |
| 2158 | for i,v in pairs(player.Character:GetChildren()) do | |
| 2159 | if (v:IsA("Part")) then
| |
| 2160 | v.Transparency = 0 | |
| 2161 | end | |
| 2162 | end | |
| 2163 | wait(1) | |
| 2164 | SPL.Part = nil | |
| 2165 | end | |
| 2166 | end | |
| 2167 | end | |
| 2168 | end | |
| 2169 | end | |
| 2170 | Player.Chatted:connect(onChatted) | |
| 2171 | --<------------------------------------------------------------------------>-- | |
| 2172 | -- ... Leviated Orb ... -- | |
| 2173 | --<------------------------------------------------------------------------>-- | |
| 2174 | local Levitated = 0 | |
| 2175 | local LevitateDir = -1 | |
| 2176 | while true do wait() | |
| 2177 | pcall(function() | |
| 2178 | M.Parent = Player.Character | |
| 2179 | Levitated = Levitated + LevitateDir / 20 | |
| 2180 | if Levitated >= 1 or Levitated <= -1 then | |
| 2181 | LevitateDir = -LevitateDir | |
| 2182 | end | |
| 2183 | if (FOLLOW == true) then | |
| 2184 | BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0) | |
| 2185 | end | |
| 2186 | end) | |
| 2187 | end | |
| 2188 | Game.JointsService.DescendantAdded:connect() | |
| 2189 | Workspace.DescendantAdded:connect() |