SHOW:
|
|
- or go back to the newest paste.
| 1 | wait(.2) | |
| 2 | whitelist = {game.Players.LocalPlayer.Name,"jane12421"} -- put admin names here
| |
| 3 | - | whitelist = {game.Players.LocalPlayer.Name,"Vortexturize","C0poration"} -- put admin names here
|
| 3 | + | |
| 4 | deletepath = game.Players.LocalPlayer.Character:FindFirstChild("Delete")
| |
| 5 | deletepath2 = game.Players.LocalPlayer.Backpack:FindFirstChild("Delete")
| |
| 6 | slock = false | |
| 7 | ||
| 8 | function newtag(plr) | |
| 9 | admintag = Instance.new("BoolValue")
| |
| 10 | admintag.Parent = game.Players[plr] | |
| 11 | admintag.Value = true | |
| 12 | admintag.Name = "admin" | |
| 13 | print("created admin tag for " .. plr)
| |
| 14 | end | |
| 15 | ||
| 16 | ||
| 17 | ||
| 18 | newtag(game.Players.LocalPlayer.Name) | |
| 19 | ||
| 20 | game.Players.LocalPlayer.ChildRemoved:connect(function(obj) | |
| 21 | if obj.Name == "admin" then | |
| 22 | newtag(game.Players.LocalPlayer.Name) | |
| 23 | end | |
| 24 | end) | |
| 25 | ||
| 26 | function adminexe(plr,msg) | |
| 27 | if plr:FindFirstChild("admin") then
| |
| 28 | ||
| 29 | local lower = string.lower(msg) | |
| 30 | local len = string.len(lower) | |
| 31 | ||
| 32 | ||
| 33 | ||
| 34 | ||
| 35 | if string.find(lower,":kill ") then | |
| 36 | local name = string.gsub(lower,":kill ","") | |
| 37 | local player = nil | |
| 38 | ||
| 39 | if name == "others" then | |
| 40 | for i,v in pairs(game.Players:GetChildren()) do | |
| 41 | if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
| |
| 42 | game.ReplicatedStorage.DragTools.RightPosition:FireServer(v.Character.Head, Vector3.new(0, -100, 0), Vector3.new(0, -100, 0)) | |
| 43 | end | |
| 44 | end | |
| 45 | else | |
| 46 | ||
| 47 | names = game.Players:GetChildren() | |
| 48 | ||
| 49 | for i,v in pairs(names) do | |
| 50 | strlower = string.lower(v.Name) | |
| 51 | sub = string.sub(strlower,1,#name) | |
| 52 | ||
| 53 | if name == sub then | |
| 54 | player = v | |
| 55 | if player.Name ~= game.Players.LocalPlayer.Name then | |
| 56 | game.ReplicatedStorage.DragTools.RightPosition:FireServer(player.Character.Head, Vector3.new(0, -100, 0), Vector3.new(0, -100, 0)) | |
| 57 | end | |
| 58 | end | |
| 59 | end | |
| 60 | end | |
| 61 | end | |
| 62 | ||
| 63 | ||
| 64 | if string.find(lower,":banish ") then | |
| 65 | local name = string.gsub(lower,":banish ","") | |
| 66 | local player = nil | |
| 67 | ||
| 68 | if name == "others" then | |
| 69 | for i,v in pairs(game.Players:GetChildren()) do | |
| 70 | if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
| |
| 71 | game.ReplicatedStorage.DragTools.RightPosition:FireServer(v.Character.HumanoidRootPart, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000)) | |
| 72 | end | |
| 73 | end | |
| 74 | else | |
| 75 | ||
| 76 | names = game.Players:GetChildren() | |
| 77 | ||
| 78 | for i,v in pairs(names) do | |
| 79 | strlower = string.lower(v.Name) | |
| 80 | sub = string.sub(strlower,1,#name) | |
| 81 | ||
| 82 | if name == sub then | |
| 83 | player = v | |
| 84 | if player.Name ~= game.Players.LocalPlayer.Name then | |
| 85 | game.ReplicatedStorage.DragTools.RightPosition:FireServer(player.Character.HumanoidRootPart, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000)) | |
| 86 | end | |
| 87 | end | |
| 88 | end | |
| 89 | end | |
| 90 | end | |
| 91 | ||
| 92 | ||
| 93 | ||
| 94 | ||
| 95 | if string.find(lower,":decalspam ") then | |
| 96 | local name = string.gsub(lower,":decalspam ","") | |
| 97 | local player = nil | |
| 98 | ||
| 99 | local function dabon(instance) | |
| 100 | for i,v in pairs(instance:GetChildren()) do | |
| 101 | if v:IsA("Decal") then
| |
| 102 | game.ReplicatedStorage.ShopItems.FaceChange:FireServer(v, "http://www.roblox.com/asset/?id="..name) | |
| 103 | end | |
| 104 | dabon(v) | |
| 105 | end | |
| 106 | end | |
| 107 | dabon(workspace) | |
| 108 | ||
| 109 | ||
| 110 | ||
| 111 | local function dabon2(instance) | |
| 112 | for i,v in pairs(instance:GetChildren()) do | |
| 113 | if v:IsA("BasePart") then
| |
| 114 | game.ReplicatedStorage.ShopItems.GiveDecal:FireServer(v, true, "http://www.roblox.com/asset/?id="..name) | |
| 115 | end | |
| 116 | dabon2(v) | |
| 117 | end | |
| 118 | end | |
| 119 | dabon2(workspace) | |
| 120 | end | |
| 121 | ||
| 122 | ||
| 123 | if string.find(lower,":particlespam ") then | |
| 124 | local name = string.gsub(lower,":particlespam ","") | |
| 125 | local player = nil | |
| 126 | ||
| 127 | local function dabon(instance) | |
| 128 | for i,v in pairs(instance:GetChildren()) do | |
| 129 | if v:IsA("BasePart") then
| |
| 130 | game.ReplicatedStorage.ShopItems.AddEffect:FireServer(v, "http://www.roblox.com/asset/?id="..name) | |
| 131 | end | |
| 132 | dabon(v) | |
| 133 | end | |
| 134 | end | |
| 135 | dabon(workspace) | |
| 136 | end | |
| 137 | ||
| 138 | ||
| 139 | ||
| 140 | ||
| 141 | ||
| 142 | ||
| 143 | ||
| 144 | ||
| 145 | ||
| 146 | if string.find(lower,":wl ") then | |
| 147 | local name = string.gsub(lower,":wl ","") | |
| 148 | local player = nil | |
| 149 | local plrname = nil | |
| 150 | ||
| 151 | if name == "others" then | |
| 152 | for i,v in pairs(game.Players:GetChildren()) do | |
| 153 | if (not v:FindFirstChild("admin")) and v.Name ~= game.Players.LocalPlayer.Name then
| |
| 154 | table.insert(whitelist,(#whitelist+1),v.Name) | |
| 155 | newtag(v.Name) | |
| 156 | ||
| 157 | v.Chatted:connect(function(msg) | |
| 158 | adminexe(v,msg) | |
| 159 | end) | |
| 160 | end | |
| 161 | end | |
| 162 | else | |
| 163 | ||
| 164 | names = game.Players:GetChildren() | |
| 165 | ||
| 166 | for i,v in pairs(names) do | |
| 167 | strlower = string.lower(v.Name) | |
| 168 | sub = string.sub(strlower,1,#name) | |
| 169 | ||
| 170 | if name == sub then | |
| 171 | newtag(v.Name) | |
| 172 | table.insert(whitelist,(#whitelist+1),v.Name) | |
| 173 | ||
| 174 | v.Chatted:connect(function(msg) | |
| 175 | adminexe(v,msg) | |
| 176 | end) | |
| 177 | end | |
| 178 | end | |
| 179 | end | |
| 180 | end | |
| 181 | ||
| 182 | if string.find(lower,":unwl ") then | |
| 183 | local name = string.gsub(lower,":unwl ","") | |
| 184 | local player = nil | |
| 185 | local plrname = nil | |
| 186 | local index = nil | |
| 187 | ||
| 188 | if name == "others" then | |
| 189 | for i,v in pairs(whitelist) do | |
| 190 | for i,v in pairs(banlist) do | |
| 191 | if v ~= game.Players.LocalPlayer.Name then | |
| 192 | table.remove(whitelist,i) | |
| 193 | end | |
| 194 | end | |
| 195 | ||
| 196 | if game.Workspace:FindFirstChild(v) then | |
| 197 | ||
| 198 | if v.Name ~= game.Players.LocalPlayer.Name then | |
| 199 | if v:FindFirstChild("admin") then
| |
| 200 | v.admin:Destroy() | |
| 201 | end | |
| 202 | end | |
| 203 | end | |
| 204 | end | |
| 205 | else | |
| 206 | names = whitelist | |
| 207 | ||
| 208 | for i,v in pairs(names) do | |
| 209 | strlower = string.lower(v) | |
| 210 | sub = string.sub(strlower,1,#name) | |
| 211 | ||
| 212 | if name == sub then | |
| 213 | table.remove(whitelist,i) | |
| 214 | end | |
| 215 | end | |
| 216 | end | |
| 217 | end | |
| 218 | ||
| 219 | if lower == ":wls" then | |
| 220 | for i,v in pairs(whitelist) do | |
| 221 | print("Player #" .. i .. " Player: " .. v)
| |
| 222 | end | |
| 223 | end | |
| 224 | ||
| 225 | ||
| 226 | ||
| 227 | if string.find(lower,":money ") then | |
| 228 | local name = string.gsub(lower,":money ","") | |
| 229 | local player = nil | |
| 230 | game.ReplicatedStorage.ChangeMoney:FireServer(game.ReplicatedStorage.ShopTools.Banana, -name) | |
| 231 | ||
| 232 | end | |
| 233 | ||
| 234 | ||
| 235 | ||
| 236 | ||
| 237 | ||
| 238 | ||
| 239 | ||
| 240 | ||
| 241 | ||
| 242 | ||
| 243 | ||
| 244 | ||
| 245 | ||
| 246 | ||
| 247 | if string.find(lower,":deletetool") then | |
| 248 | local epic = Instance.new("Tool")
| |
| 249 | local dab = Instance.new("Part")
| |
| 250 | local plr = game.Players.LocalPlayer | |
| 251 | local tar_obj = nil | |
| 252 | local ok = game.ReplicatedStorage.DragTools.RightPosition | |
| 253 | dab.Parent = epic | |
| 254 | dab.Size = Vector3.new(0.2, 0.2, 0.2) | |
| 255 | epic.Parent = plr.Backpack | |
| 256 | epic.Name = "Delete" | |
| 257 | dab.Name = "Handle" | |
| 258 | epic.Equipped:Connect(function(m_S) | |
| 259 | print("m")
| |
| 260 | ||
| 261 | m_S.Button1Down:Connect(function() | |
| 262 | print("M")
| |
| 263 | ||
| 264 | tar_obj = m_S.Target | |
| 265 | ||
| 266 | ok:FireServer(tar_obj, Vector3.new(math.random(999000, 1001000), 1000000, 1000000), Vector3.new(math.random(999000, 1001000), 1000000, 1000000)) | |
| 267 | ||
| 268 | end) | |
| 269 | end) | |
| 270 | end | |
| 271 | ||
| 272 | ||
| 273 | ||
| 274 | if string.find(lower,":awardbadge") then | |
| 275 | game.ReplicatedStorage.EventStorage.RewardBadge:FireServer() | |
| 276 | end | |
| 277 | ||
| 278 | if string.find(lower,":eventcake") then | |
| 279 | game.ReplicatedStorage.EventStorage.SpawnEventCake:FireServer() | |
| 280 | end | |
| 281 | ||
| 282 | if string.find(lower,":eventcake") then | |
| 283 | game.ReplicatedStorage.EventStorage.SpawnEventCake:FireServer() | |
| 284 | end | |
| 285 | ||
| 286 | ||
| 287 | if string.find(lower,":raincakes") then | |
| 288 | game.ReplicatedStorage.ShopItems.RainCakes:FireServer() | |
| 289 | end | |
| 290 | ||
| 291 | ||
| 292 | ||
| 293 | ||
| 294 | ||
| 295 | if string.find(lower,":credits") then | |
| 296 | local creditsdab = Instance.new("ScreenGui")
| |
| 297 | local Frame = Instance.new("Frame")
| |
| 298 | local aidez = Instance.new("ImageLabel")
| |
| 299 | local names = Instance.new("TextLabel")
| |
| 300 | local scriptmadeby = Instance.new("TextLabel")
| |
| 301 | local x = Instance.new("TextButton")
| |
| 302 | ||
| 303 | creditsdab.Name = "creditsdab" | |
| 304 | creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
| |
| 305 | ||
| 306 | Frame.Parent = creditsdab | |
| 307 | Frame.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 308 | Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0) | |
| 309 | Frame.Size = UDim2.new(0, 274, 0, 274) | |
| 310 | ||
| 311 | aidez.Name = "aidez" | |
| 312 | aidez.Parent = Frame | |
| 313 | aidez.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 314 | aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 315 | aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0) | |
| 316 | aidez.Size = UDim2.new(0, 274, 0, 274) | |
| 317 | aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1" | |
| 318 | ||
| 319 | names.Name = "names" | |
| 320 | names.Parent = Frame | |
| 321 | names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 322 | names.BackgroundTransparency = 0.30000001192093 | |
| 323 | names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 324 | names.Position = UDim2.new(0, 0, 0.897810221, 0) | |
| 325 | names.Size = UDim2.new(0, 274, 0, 28) | |
| 326 | names.Font = Enum.Font.SourceSans | |
| 327 | names.Text = "Vortexturize | aidez moi | ObitoXDm8OI " | |
| 328 | names.TextColor3 = Color3.new(1, 1, 1) | |
| 329 | names.TextSize = 14 | |
| 330 | ||
| 331 | scriptmadeby.Name = "scriptmadeby" | |
| 332 | scriptmadeby.Parent = Frame | |
| 333 | scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 334 | scriptmadeby.BackgroundTransparency = 0.30000001192093 | |
| 335 | scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 336 | scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0) | |
| 337 | scriptmadeby.Size = UDim2.new(0, 274, 0, 28) | |
| 338 | scriptmadeby.Font = Enum.Font.SourceSans | |
| 339 | scriptmadeby.Text = "Script made by" | |
| 340 | scriptmadeby.TextColor3 = Color3.new(1, 1, 1) | |
| 341 | scriptmadeby.TextSize = 14 | |
| 342 | ||
| 343 | x.Name = "x" | |
| 344 | x.Parent = creditsdab | |
| 345 | x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 346 | x.BackgroundTransparency = 0.30000001192093 | |
| 347 | x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 348 | x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0) | |
| 349 | x.Size = UDim2.new(0, 28, 0, 28) | |
| 350 | x.Font = Enum.Font.SourceSansSemibold | |
| 351 | x.Text = "X" | |
| 352 | x.TextColor3 = Color3.new(1, 1, 1) | |
| 353 | x.TextSize = 30 | |
| 354 | ||
| 355 | x.MouseButton1Click:connect(function() | |
| 356 | game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy() | |
| 357 | end) | |
| 358 | end | |
| 359 | ||
| 360 | if string.find(lower,"/e credits") then | |
| 361 | local creditsdab = Instance.new("ScreenGui")
| |
| 362 | local Frame = Instance.new("Frame")
| |
| 363 | local aidez = Instance.new("ImageLabel")
| |
| 364 | local names = Instance.new("TextLabel")
| |
| 365 | local scriptmadeby = Instance.new("TextLabel")
| |
| 366 | local x = Instance.new("TextButton")
| |
| 367 | ||
| 368 | creditsdab.Name = "creditsdab" | |
| 369 | creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
| |
| 370 | ||
| 371 | Frame.Parent = creditsdab | |
| 372 | Frame.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 373 | Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0) | |
| 374 | Frame.Size = UDim2.new(0, 274, 0, 274) | |
| 375 | ||
| 376 | aidez.Name = "aidez" | |
| 377 | aidez.Parent = Frame | |
| 378 | aidez.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 379 | aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 380 | aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0) | |
| 381 | aidez.Size = UDim2.new(0, 274, 0, 274) | |
| 382 | aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1" | |
| 383 | ||
| 384 | names.Name = "names" | |
| 385 | names.Parent = Frame | |
| 386 | names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 387 | names.BackgroundTransparency = 0.30000001192093 | |
| 388 | names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 389 | names.Position = UDim2.new(0, 0, 0.897810221, 0) | |
| 390 | names.Size = UDim2.new(0, 274, 0, 28) | |
| 391 | names.Font = Enum.Font.SourceSans | |
| 392 | names.Text = "Vortexturize | aidez moi | ObitoXDm8OI " | |
| 393 | names.TextColor3 = Color3.new(1, 1, 1) | |
| 394 | names.TextSize = 14 | |
| 395 | ||
| 396 | scriptmadeby.Name = "scriptmadeby" | |
| 397 | scriptmadeby.Parent = Frame | |
| 398 | scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 399 | scriptmadeby.BackgroundTransparency = 0.30000001192093 | |
| 400 | scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 401 | scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0) | |
| 402 | scriptmadeby.Size = UDim2.new(0, 274, 0, 28) | |
| 403 | scriptmadeby.Font = Enum.Font.SourceSans | |
| 404 | scriptmadeby.Text = "Script made by" | |
| 405 | scriptmadeby.TextColor3 = Color3.new(1, 1, 1) | |
| 406 | scriptmadeby.TextSize = 14 | |
| 407 | ||
| 408 | x.Name = "x" | |
| 409 | x.Parent = creditsdab | |
| 410 | x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 411 | x.BackgroundTransparency = 0.30000001192093 | |
| 412 | x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 413 | x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0) | |
| 414 | x.Size = UDim2.new(0, 28, 0, 28) | |
| 415 | x.Font = Enum.Font.SourceSansSemibold | |
| 416 | x.Text = "X" | |
| 417 | x.TextColor3 = Color3.new(1, 1, 1) | |
| 418 | x.TextSize = 30 | |
| 419 | ||
| 420 | x.MouseButton1Click:connect(function() | |
| 421 | game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy() | |
| 422 | end) | |
| 423 | end | |
| 424 | ||
| 425 | if string.find(lower,"/e :credits") then | |
| 426 | local creditsdab = Instance.new("ScreenGui")
| |
| 427 | local Frame = Instance.new("Frame")
| |
| 428 | local aidez = Instance.new("ImageLabel")
| |
| 429 | local names = Instance.new("TextLabel")
| |
| 430 | local scriptmadeby = Instance.new("TextLabel")
| |
| 431 | local x = Instance.new("TextButton")
| |
| 432 | ||
| 433 | creditsdab.Name = "creditsdab" | |
| 434 | creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
| |
| 435 | ||
| 436 | Frame.Parent = creditsdab | |
| 437 | Frame.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 438 | Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0) | |
| 439 | Frame.Size = UDim2.new(0, 274, 0, 274) | |
| 440 | ||
| 441 | aidez.Name = "aidez" | |
| 442 | aidez.Parent = Frame | |
| 443 | aidez.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 444 | aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 445 | aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0) | |
| 446 | aidez.Size = UDim2.new(0, 274, 0, 274) | |
| 447 | aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1" | |
| 448 | ||
| 449 | names.Name = "names" | |
| 450 | names.Parent = Frame | |
| 451 | names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 452 | names.BackgroundTransparency = 0.30000001192093 | |
| 453 | names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 454 | names.Position = UDim2.new(0, 0, 0.897810221, 0) | |
| 455 | names.Size = UDim2.new(0, 274, 0, 28) | |
| 456 | names.Font = Enum.Font.SourceSans | |
| 457 | names.Text = "Vortexturize | aidez moi | ObitoXDm8OI " | |
| 458 | names.TextColor3 = Color3.new(1, 1, 1) | |
| 459 | names.TextSize = 14 | |
| 460 | ||
| 461 | scriptmadeby.Name = "scriptmadeby" | |
| 462 | scriptmadeby.Parent = Frame | |
| 463 | scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 464 | scriptmadeby.BackgroundTransparency = 0.30000001192093 | |
| 465 | scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 466 | scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0) | |
| 467 | scriptmadeby.Size = UDim2.new(0, 274, 0, 28) | |
| 468 | scriptmadeby.Font = Enum.Font.SourceSans | |
| 469 | scriptmadeby.Text = "Script made by" | |
| 470 | scriptmadeby.TextColor3 = Color3.new(1, 1, 1) | |
| 471 | scriptmadeby.TextSize = 14 | |
| 472 | ||
| 473 | x.Name = "x" | |
| 474 | x.Parent = creditsdab | |
| 475 | x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 476 | x.BackgroundTransparency = 0.30000001192093 | |
| 477 | x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 478 | x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0) | |
| 479 | x.Size = UDim2.new(0, 28, 0, 28) | |
| 480 | x.Font = Enum.Font.SourceSansSemibold | |
| 481 | x.Text = "X" | |
| 482 | x.TextColor3 = Color3.new(1, 1, 1) | |
| 483 | x.TextSize = 30 | |
| 484 | ||
| 485 | x.MouseButton1Click:connect(function() | |
| 486 | game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy() | |
| 487 | end) | |
| 488 | end | |
| 489 | ||
| 490 | ||
| 491 | ||
| 492 | ||
| 493 | ||
| 494 | ||
| 495 | ||
| 496 | if string.find(lower,":cmds") then | |
| 497 | print("----------------COMMANDS-------------------")
| |
| 498 | print("Selection options: Full Player Name, Abrreviated, Others, Silent")
| |
| 499 | print("Almost all commands have silent variants.")
| |
| 500 | print('Example: ":kill others"')
| |
| 501 | print('Silent Example: "/e :kill others"')
| |
| 502 | print('Silent Example 2: "/e kill others"')
| |
| 503 | print() | |
| 504 | print(":cmds - I wonder what this does.")
| |
| 505 | print(":kill PLAYERNAME - Kills the target")
| |
| 506 | print(":money NUMBER - Gives you the ammount of money you specify")
| |
| 507 | print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")
| |
| 508 | print(":eventcake - Spawns the event cake in front of you.")
| |
| 509 | print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")
| |
| 510 | print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")
| |
| 511 | print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")
| |
| 512 | print(":credits - Shows the cool gui you saw when you executed the script.")
| |
| 513 | print() | |
| 514 | print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')
| |
| 515 | print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
| |
| 516 | print('and the same goes for :wls, since the game is filtering enabled, however they will')
| |
| 517 | print('be able to use commands if whitelisted')
| |
| 518 | print('You can not be unwhitelisted or killed')
| |
| 519 | print("Have fun")
| |
| 520 | print("------------------------------------------")
| |
| 521 | print("--Vortexturize | aidez moi | ObitoXDm8OI--")
| |
| 522 | print("------------Credit to Timeless------------")
| |
| 523 | print("------------------------------------------")
| |
| 524 | ||
| 525 | ||
| 526 | end | |
| 527 | ||
| 528 | print("----------------COMMANDS-------------------")
| |
| 529 | print("Selection options: Full Player Name, Abrreviated, Others, Silent")
| |
| 530 | print("Almost all commands have silent variants.")
| |
| 531 | print('Example: ":kill others"')
| |
| 532 | print('Silent Example: "/e :kill others"')
| |
| 533 | print('Silent Example 2: "/e kill others"')
| |
| 534 | print() | |
| 535 | print(":cmds - I wonder what this does.")
| |
| 536 | print(":kill PLAYERNAME - Kills the target")
| |
| 537 | print(":money NUMBER - Gives you the ammount of money you specify")
| |
| 538 | print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")
| |
| 539 | print(":eventcake - Spawns the event cake in front of you.")
| |
| 540 | print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")
| |
| 541 | print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")
| |
| 542 | print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")
| |
| 543 | print(":credits - Shows the cool gui you saw when you executed the script.")
| |
| 544 | print() | |
| 545 | print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')
| |
| 546 | print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
| |
| 547 | print('and the same goes for :wls, since the game is filtering enabled, however they will')
| |
| 548 | print('be able to use commands if whitelisted')
| |
| 549 | print('You can not be unwhitelisted or killed')
| |
| 550 | print("Have fun")
| |
| 551 | print("------------------------------------------")
| |
| 552 | print("--Vortexturize | aidez moi | ObitoXDm8OI--")
| |
| 553 | print("------------Credit to Timeless------------")
| |
| 554 | print("------------------------------------------")
| |
| 555 | ||
| 556 | ||
| 557 | end | |
| 558 | ||
| 559 | print("----------------COMMANDS-------------------")
| |
| 560 | print("Selection options: Full Player Name, Abrreviated, Others, Silent")
| |
| 561 | print("Almost all commands have silent variants.")
| |
| 562 | print('Example: ":kill others"')
| |
| 563 | print('Silent Example: "/e :kill others"')
| |
| 564 | print('Silent Example 2: "/e kill others"')
| |
| 565 | print() | |
| 566 | print(":cmds - I wonder what this does.")
| |
| 567 | print(":kill PLAYERNAME - Kills the target")
| |
| 568 | print(":money NUMBER - Gives you the ammount of money you specify")
| |
| 569 | print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")
| |
| 570 | print(":eventcake - Spawns the event cake in front of you.")
| |
| 571 | print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")
| |
| 572 | print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")
| |
| 573 | print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")
| |
| 574 | print(":credits - Shows the cool gui you saw when you executed the script.")
| |
| 575 | print() | |
| 576 | print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')
| |
| 577 | print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
| |
| 578 | print('and the same goes for :wls, since the game is filtering enabled, however they will')
| |
| 579 | print('be able to use commands if whitelisted')
| |
| 580 | print('You can not be unwhitelisted or killed')
| |
| 581 | print("Have fun")
| |
| 582 | print("------------------------------------------")
| |
| 583 | print("--Vortexturize | aidez moi | ObitoXDm8OI--")
| |
| 584 | print("------------Credit to Timeless------------")
| |
| 585 | print("------------------------------------------")
| |
| 586 | ||
| 587 | end | |
| 588 | ||
| 589 | ||
| 590 | ||
| 591 | ||
| 592 | ||
| 593 | ||
| 594 | game.Players.LocalPlayer.Chatted:connect(function(msg) | |
| 595 | adminexe(game.Players.LocalPlayer,msg) | |
| 596 | end) | |
| 597 | ||
| 598 | ||
| 599 | ||
| 600 | ||
| 601 | ||
| 602 | ||
| 603 | ||
| 604 | function start(plr) | |
| 605 | ||
| 606 | local found = false | |
| 607 | local banned = false | |
| 608 | ||
| 609 | for i=1,#whitelist do | |
| 610 | if plr.Name == (whitelist[i]) then | |
| 611 | found = true | |
| 612 | end | |
| 613 | end | |
| 614 | ||
| 615 | for i=1,#banlist do | |
| 616 | if plr.Name == banlist[i] then | |
| 617 | banned = true | |
| 618 | end | |
| 619 | ||
| 620 | if banned == true then | |
| 621 | game.Workspace.Delete.delete:FireServer(plr) | |
| 622 | end | |
| 623 | end | |
| 624 | if found == false and slock == true then | |
| 625 | game.Workspace.Delete.delete:FireServer(plr) | |
| 626 | end | |
| 627 | ||
| 628 | if found == true then | |
| 629 | newtag(plr.Name) | |
| 630 | plr.Chatted:connect(function(msg) | |
| 631 | adminexe(plr,msg) | |
| 632 | end) | |
| 633 | end | |
| 634 | end | |
| 635 | game.Players.PlayerAdded:connect(function(plr) | |
| 636 | start(plr) | |
| 637 | end) | |
| 638 | ||
| 639 | ||
| 640 | local creditsdab = Instance.new("ScreenGui")
| |
| 641 | local Frame = Instance.new("Frame")
| |
| 642 | local aidez = Instance.new("ImageLabel")
| |
| 643 | local names = Instance.new("TextLabel")
| |
| 644 | local scriptmadeby = Instance.new("TextLabel")
| |
| 645 | local scriptmadeby_2 = Instance.new("TextLabel")
| |
| 646 | local x = Instance.new("TextButton")
| |
| 647 | ||
| 648 | creditsdab.Name = "creditsdab" | |
| 649 | creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
| |
| 650 | ||
| 651 | Frame.Parent = creditsdab | |
| 652 | Frame.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 653 | Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0) | |
| 654 | Frame.Size = UDim2.new(0, 274, 0, 274) | |
| 655 | ||
| 656 | aidez.Name = "aidez" | |
| 657 | aidez.Parent = Frame | |
| 658 | aidez.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 659 | aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 660 | aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0) | |
| 661 | aidez.Size = UDim2.new(0, 274, 0, 274) | |
| 662 | aidez.Image = "rbxassetid://0&hash=1f4850af628f3f952e6d4776051738e1" | |
| 663 | ||
| 664 | names.Name = "names" | |
| 665 | names.Parent = Frame | |
| 666 | names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 667 | names.BackgroundTransparency = 0.30000001192093 | |
| 668 | names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 669 | names.Position = UDim2.new(0, 0, 0.897810221, 0) | |
| 670 | names.Size = UDim2.new(0, 274, 0, 28) | |
| 671 | names.Font = Enum.Font.SourceSans | |
| 672 | names.Text = "Vortexturize | aidez moi | ObitoXDm8OI " | |
| 673 | names.TextColor3 = Color3.new(1, 1, 1) | |
| 674 | names.TextSize = 14 | |
| 675 | ||
| 676 | scriptmadeby.Name = "scriptmadeby" | |
| 677 | scriptmadeby.Parent = Frame | |
| 678 | scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 679 | scriptmadeby.BackgroundTransparency = 0.30000001192093 | |
| 680 | scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 681 | scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0) | |
| 682 | scriptmadeby.Size = UDim2.new(0, 274, 0, 28) | |
| 683 | scriptmadeby.Font = Enum.Font.SourceSans | |
| 684 | scriptmadeby.Text = "Script made by" | |
| 685 | scriptmadeby.TextColor3 = Color3.new(1, 1, 1) | |
| 686 | scriptmadeby.TextSize = 14 | |
| 687 | ||
| 688 | scriptmadeby_2.Name = "scriptmadeby" | |
| 689 | scriptmadeby_2.Parent = Frame | |
| 690 | scriptmadeby_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 691 | scriptmadeby_2.BackgroundTransparency = 0.30000001192093 | |
| 692 | scriptmadeby_2.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 693 | scriptmadeby_2.Position = UDim2.new(0, 0, -0.164233565, 0) | |
| 694 | scriptmadeby_2.Size = UDim2.new(0, 274, 0, 17) | |
| 695 | scriptmadeby_2.Font = Enum.Font.SourceSans | |
| 696 | scriptmadeby_2.Text = "Check the dev console for a list of commands! (F9 or Shift + F9)" | |
| 697 | scriptmadeby_2.TextColor3 = Color3.new(1, 1, 1) | |
| 698 | scriptmadeby_2.TextScaled = true | |
| 699 | scriptmadeby_2.TextSize = 14 | |
| 700 | scriptmadeby_2.TextWrapped = true | |
| 701 | ||
| 702 | x.Name = "x" | |
| 703 | x.Parent = creditsdab | |
| 704 | x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 705 | x.BackgroundTransparency = 0.30000001192093 | |
| 706 | x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647) | |
| 707 | x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0) | |
| 708 | x.Size = UDim2.new(0, 28, 0, 28) | |
| 709 | x.Font = Enum.Font.SourceSansSemibold | |
| 710 | x.Text = "X" | |
| 711 | x.TextColor3 = Color3.new(1, 1, 1) | |
| 712 | x.TextSize = 30 | |
| 713 | ||
| 714 | x.MouseButton1Click:connect(function() | |
| 715 | game.Players.LocalPlayer.PlayerGui.creditsdab:Destroy() | |
| 716 | end) | |
| 717 | ||
| 718 | ||
| 719 | print("----------------COMMANDS-------------------")
| |
| 720 | print("Selection options: Full Player Name, Abrreviated, Others, Silent")
| |
| 721 | print("Almost all commands have silent variants.")
| |
| 722 | print('Example: ":kill others"')
| |
| 723 | print('Silent Example: "/e :kill others"')
| |
| 724 | print('Silent Example 2: "/e kill others"')
| |
| 725 | print() | |
| 726 | print(":cmds - I wonder what this does.")
| |
| 727 | print(":kill PLAYERNAME - Kills the target")
| |
| 728 | print(":deletetool - A tool that sends parts to infinity and beyond")
| |
| 729 | print(":banish PLAYERNAME - Sends players to infinity and beyond.")
| |
| 730 | print(":money NUMBER - Gives you the ammount of money you specify")
| |
| 731 | print(":awardbadge - idk if this one works or not, it at least shows you the gui saying you won")
| |
| 732 | print(":eventcake - Spawns the event cake in front of you.")
| |
| 733 | print(":raincakes - Makes cakes rain around you")print(":decalspam IMAGEID - Changes all the decals in the game to the id you set.")
| |
| 734 | print(":decalspam IMAGEID - Replaces any decals in the game with an image of your choice.")
| |
| 735 | print("particlespam IMAGEID - Puts a particle emitter in every brick, that emits the image you chose.")
| |
| 736 | print("Make sure you put the IMAGE ID and not the ITEM ID when you use :decalspam and :particlespam")
| |
| 737 | print(":credits - Shows the cool gui you saw when you executed the script.")
| |
| 738 | print() | |
| 739 | print('Executing "kill others/etc." wont kill those whitelisted, but if you single them out it will')
| |
| 740 | print('If a user is whitelisted he/she will not be able to see commands on their screen with :cmds,')
| |
| 741 | print('and the same goes for :wls, since the game is filtering enabled, however they will')
| |
| 742 | print('be able to use commands if whitelisted')
| |
| 743 | print('You can not be unwhitelisted or killed')
| |
| 744 | print("Have fun")
| |
| 745 | print("------------------------------------------")
| |
| 746 | print("--Vortexturize | aidez moi | ObitoXDm8OI--")
| |
| 747 | print("------------Credit to Timeless------------")
| |
| 748 | print("------------------------------------------") |