SHOW:
|
|
- or go back to the newest paste.
| 1 | - | XYZ SCRIPTS |
| 1 | + | ---------------------------------------- |
| 2 | - | \\PARTICLES// |
| 2 | + | |
| 3 | ---------------------------------------- | |
| 4 | for i, v in pairs(game.Players:GetChildren()) do | |
| 5 | emit = Instance.new("ParticleEmitter")
| |
| 6 | emit.Parent = v.Character.Torso | |
| 7 | emit.Texture = "http://www.roblox.com/asset/?id=292916914" | |
| 8 | emit.VelocitySpread = 20 | |
| 9 | end | |
| 10 | ---------------------------------------- | |
| 11 | TRUMP PARTICLES: | |
| 12 | ---------------------------------------- | |
| 13 | for i, v in pairs(game.Players:GetChildren()) do | |
| 14 | emit = Instance.new("ParticleEmitter")
| |
| 15 | emit.Parent = v.Character.Torso | |
| 16 | emit.Texture = "http://www.roblox.com/asset/?id=343377229" | |
| 17 | emit.VelocitySpread = 20 | |
| 18 | end | |
| 19 | ---------------------------------------- | |
| 20 | NIGEL THORNBERRY PARTICLES: | |
| 21 | ---------------------------------------- | |
| 22 | for i, v in pairs(game.Players:GetChildren()) do | |
| 23 | emit = Instance.new("ParticleEmitter")
| |
| 24 | emit.Parent = v.Character.Torso | |
| 25 | emit.Texture = "http://www.roblox.com/asset/?id=221865345" | |
| 26 | emit.VelocitySpread = 20 | |
| 27 | end | |
| 28 | ---------------------------------------- | |
| 29 | SPONGE BOB PARTICLES: | |
| 30 | ---------------------------------------- | |
| 31 | for i, v in pairs(game.Players:GetChildren()) do | |
| 32 | emit = Instance.new("ParticleEmitter")
| |
| 33 | emit.Parent = v.Character.Torso | |
| 34 | emit.Texture = "http://www.roblox.com/asset/?id=68119605" | |
| 35 | emit.VelocitySpread = 20 | |
| 36 | end | |
| 37 | ---------------------------------------- | |
| 38 | Mao Zedong PARTICLES: | |
| 39 | ---------------------------------------- | |
| 40 | for i, v in pairs(game.Players:GetChildren()) do | |
| 41 | emit = Instance.new("ParticleEmitter")
| |
| 42 | emit.Parent = v.Character.Torso | |
| 43 | emit.Texture = "http://www.roblox.com/asset/?id=78307728" | |
| 44 | emit.VelocitySpread = 20 | |
| 45 | end | |
| 46 | ---------------------------------------- | |
| 47 | \\ BTOOLS // | |
| 48 | ---------------------------------------- | |
| 49 | x = Instance.new("HopperBin")x.Parent = game.Players.YOURNAMEHERE.Backpack x.BinType = 3 -- COPY(CLONE) TOOL
| |
| 50 | y = Instance.new("HopperBin")y.Parent = game.Players.YOURNAMEHERE.Backpack y.BinType = 2 -- GRAB TOOL
| |
| 51 | z = Instance.new("HopperBin")z.Parent = game.Players.YOURNAMEHERE.Backpack z.BinType = 4 -- Delete TOOL
| |
| 52 | ---------------------------------------- | |
| 53 | ADD TEAM (Crash message will pop up): | |
| 54 | ---------------------------------------- | |
| 55 | f = Instance.new("Team") f.Parent = game.Teams
| |
| 56 | f.Name = "NAMEOFTHETEAM" | |
| 57 | f.AutoAssignable = true | |
| 58 | ---------------------------------------- | |
| 59 | ADD A BASEPLATE: | |
| 60 | ---------------------------------------- | |
| 61 | B = Instance.new("Part") B.Parent = game.Workspace
| |
| 62 | B.Size = Vector3.new(1000,0,1000) f.Name = "Base" B.Anchored = true | |
| 63 | B.CanCollide = true B.Locked = true | |
| 64 | B.formFactor = "Plate" | |
| 65 | ---------------------------------------- | |
| 66 | BECOME HUGE(GIANT): | |
| 67 | ---------------------------------------- | |
| 68 | local Player = game.Players.LocalPlayer | |
| 69 | local Character = Player.Character | |
| 70 | ||
| 71 | function SpecialMesh(part) | |
| 72 | Instance.new("SpecialMesh", part)
| |
| 73 | end | |
| 74 | ||
| 75 | for i,v in pairs (Character:GetChildren()) do | |
| 76 | if v.ClassName == "Part" then | |
| 77 | if v.Name ~= "HumanoidRootPart" and v.Name ~= "Head" then | |
| 78 | SpecialMesh(v) | |
| 79 | v.Mesh.MeshType = "Brick" | |
| 80 | end | |
| 81 | end | |
| 82 | end | |
| 83 | ||
| 84 | local h = Character.Head.Mesh | |
| 85 | local t = Character.Torso.Mesh | |
| 86 | local la = Character["Left Arm"].Mesh | |
| 87 | local ra = Character["Right Arm"].Mesh | |
| 88 | local ll = Character["Left Leg"].Mesh | |
| 89 | local rl = Character["Right Leg"].Mesh | |
| 90 | ||
| 91 | h.Scale = Vector3.new(15,15,15) | |
| 92 | h.Offset = Vector3.new(0, 32, 0) | |
| 93 | ||
| 94 | t.Scale = Vector3.new(15,15,15) | |
| 95 | t.Offset = Vector3.new(0, 12, 0) | |
| 96 | ||
| 97 | la.Scale = Vector3.new(15,15,15) | |
| 98 | la.Offset = Vector3.new(24,12,0) | |
| 99 | ||
| 100 | ra.Scale = Vector3.new(15,15,15) | |
| 101 | ra.Offset = Vector3.new(-24,12,0) | |
| 102 | ||
| 103 | ll.Scale = Vector3.new(15,15,15) | |
| 104 | ll.Offset = Vector3.new(8, -15, 0) | |
| 105 | ||
| 106 | rl.Scale = Vector3.new(15,15,15) | |
| 107 | rl.Offset = Vector3.new(-8, -15, 0) | |
| 108 | ||
| 109 | Character.Humanoid.HipHeight = 25 | |
| 110 | ---------------------------------------- | |
| 111 | ---------------------------------------- | |
| 112 | \\ APOCALYPSE RISING // | |
| 113 | ||
| 114 | INFINITE HUNGER/THIRST/STAMINA | |
| 115 | ---------------------------------------- | |
| 116 | while true | |
| 117 | do | |
| 118 | game.Players.LocalPlayer.playerstats.Hunger.Value = 100 | |
| 119 | game.Players.LocalPlayer.playerstats.Thirst.Value = 100 | |
| 120 | game.Players.LocalPlayer.Backpack.GlobalFunctions.Stamina.Value = 100 | |
| 121 | wait(0.05) | |
| 122 | end | |
| 123 | ---------------------------------------- | |
| 124 | ALWAYS SPRINT: | |
| 125 | ---------------------------------------- | |
| 126 | game.Players.LocalPlayer.PlayerGui.HitEqualsYouDie.WalkspeedEdit:Remove() | |
| 127 | game.Players.LocalPlayer.PlayerGui.HitEqualsYouDie.JumpLimiter:Remove() | |
| 128 | game.Workspace["YOURNAMEHERE"].Humanoid.WalkSpeed.Value = 25 | |
| 129 | ---------------------------------------- | |
| 130 | LIST OF ITEMS: | |
| 131 | ---------------------------------------- | |
| 132 | for i,v in | |
| 133 | pairs(game.Lighting.LootDrops:GetChildren()) do | |
| 134 | print( v ) | |
| 135 | end --shows all lists. press f9 | |
| 136 | ---------------------------------------- | |
| 137 | ---------------------------------------- | |
| 138 | Found by CUBIC |