SHOW:
|
|
- or go back to the newest paste.
| 1 | local p = game.Players.LocalPlayer | |
| 2 | local char = p.Character | |
| 3 | local hed = char.Head | |
| 4 | ||
| 5 | local naeeym = Instance.new("BillboardGui",char)
| |
| 6 | naeeym.Size = UDim2.new(0,100,0,40) | |
| 7 | naeeym.StudsOffset = Vector3.new(0,5,0) | |
| 8 | naeeym.Adornee = char.Head | |
| 9 | local tecks = Instance.new("TextLabel",naeeym)
| |
| 10 | tecks.BackgroundTransparency = 1 | |
| 11 | tecks.BorderSizePixel = 0 | |
| 12 | - | tecks.Text = "SilentZeroX" |
| 12 | + | tecks.Text = "Luigi" |
| 13 | tecks.Font = "ArialBold" | |
| 14 | tecks.FontSize = "Size24" | |
| 15 | tecks.TextStrokeTransparency = 0 | |
| 16 | - | tecks.TextStrokeColor3 = Color3.new(1,1,1) |
| 16 | + | tecks.TextStrokeColor3 = Color3.new(0,155,0) |
| 17 | tecks.TextColor3 = Color3.new(0,255,0) | |
| 18 | tecks.Size = UDim2.new(1,0,0.5,0) | |
| 19 | ||
| 20 | local Player = game.Players.localPlayer | |
| 21 | local Character = p.Character | |
| 22 | local LeftArm2 = Character["Left Arm"] | |
| 23 | local RightArm2 = Character["Right Arm"] | |
| 24 | local LeftLeg2 = Character["Left Leg"] | |
| 25 | local RightLeg2 = Character["Right Leg"] | |
| 26 | local Head2 = Character.Head | |
| 27 | local Torso2 = Character.Torso | |
| 28 | ||
| 29 | --created by SoldierJoao | |
| 30 | --Credits to metabee for the knives edit | |
| 31 | cut = Instance.new("Sound", Character)
| |
| 32 | - | cut.SoundId = "https://www.roblox.com/asset/?id=97095069" |
| 32 | + | cut.SoundId = "https://www.roblox.com/asset/?id=135362176" |
| 33 | cut.Volume = 10 | |
| 34 | thri = Instance.new("Sound", Character)
| |
| 35 | - | thri.SoundId = "https://www.roblox.com/asset/?id=186311262" |
| 35 | + | thri.SoundId = "https://www.roblox.com/asset/?id=987502413" |
| 36 | thri.Volume = 10 | |
| 37 | WRY = Instance.new("Sound", Character)
| |
| 38 | WRY.SoundId = "https://www.roblox.com/asset/?id=276152532" | |
| 39 | WRY.Volume = 10 | |
| 40 | ||
| 41 | local Players=game:service'Players' | |
| 42 | local Player=Players.LocalPlayer | |
| 43 | local Mouse=Player:GetMouse'' | |
| 44 | local RenderStepped=game:service'RunService'.RenderStepped | |
| 45 | ||
| 46 | - | local MeshId='http://www.roblox.com/asset?id=202083123' |
| 46 | + | local MeshId='http://www.roblox.com/asset?id=430819577' |
| 47 | - | local TextureId='http://www.roblox.com/asset/?id=189436355' |
| 47 | + | local TextureId='http://www.roblox.com/asset/?id=430819580' |
| 48 | ||
| 49 | local BeeSpeed= 100 | |
| 50 | ||
| 51 | local QHold=false | |
| 52 | local EHold=false | |
| 53 | ||
| 54 | Mouse.Button1Down:connect(function() | |
| 55 | cut:Play() | |
| 56 | if Mouse.Target then | |
| 57 | local Bee=Instance.new('Part',Player.Character)
| |
| 58 | Bee.CanCollide=false | |
| 59 | Bee.Size=Vector3.new(2,2,2) | |
| 60 | Bee.CFrame=Player.Character.Torso.CFrame | |
| 61 | local BeeMesh=Instance.new('SpecialMesh',Bee)
| |
| 62 | BeeMesh.MeshType='FileMesh' | |
| 63 | BeeMesh.MeshId=MeshId | |
| 64 | BeeMesh.TextureId=TextureId | |
| 65 | - | BeeMesh.Scale=Vector3.new(1,1,1) |
| 65 | + | BeeMesh.Scale=Vector3.new(0.020,0.020,0.015) |
| 66 | local BodyVel=Instance.new('BodyVelocity',Bee)
| |
| 67 | BodyVel.maxForce=Vector3.new(math.huge,math.huge,math.huge) | |
| 68 | local BodyGyro=Instance.new('BodyGyro',Bee)
| |
| 69 | BodyGyro.maxTorque=Vector3.new(math.huge,math.huge,math.huge) | |
| 70 | BodyGyro.P=2e4 | |
| 71 | coroutine.wrap(function() | |
| 72 | RenderStepped:connect(function() | |
| 73 | BodyGyro.cframe=CFrame.new(Bee.Position,Mouse.Hit.p) | |
| 74 | BodyVel.velocity=Bee.CFrame.lookVector*BeeSpeed | |
| 75 | end) | |
| 76 | end)() | |
| 77 | Bee.Touched:connect(function(p) | |
| 78 | if p.Parent~=Player.Character and p.Parent:FindFirstChild'Humanoid'then | |
| 79 | p.Parent:BreakJoints() | |
| 80 | Bee:Destroy'' | |
| 81 | thri:Play() | |
| 82 | end | |
| 83 | end) | |
| 84 | end | |
| 85 | end) | |
| 86 | ||
| 87 | ||
| 88 | Mouse.KeyDown:connect(function(k) | |
| 89 | local Key=k:lower'' | |
| 90 | if Key=='q'then | |
| 91 | QHold=true | |
| 92 | elseif Key=='e'then | |
| 93 | EHold=true | |
| 94 | end | |
| 95 | end) | |
| 96 | ||
| 97 | Mouse.KeyUp:connect(function(k) | |
| 98 | local Key=k:lower'' | |
| 99 | if Key=='q'then | |
| 100 | QHold=false | |
| 101 | elseif Key=='e'then | |
| 102 | EHold=false | |
| 103 | end | |
| 104 | end) | |
| 105 | ||
| 106 | coroutine.wrap(function() | |
| 107 | RenderStepped:connect(function() | |
| 108 | if QHold then | |
| 109 | if BeeSpeed>0 then | |
| 110 | BeeSpeed=BeeSpeed-1 | |
| 111 | end | |
| 112 | elseif EHold then | |
| 113 | BeeSpeed=BeeSpeed+1 | |
| 114 | end | |
| 115 | end) | |
| 116 | end)() | |
| 117 | ||
| 118 | ||
| 119 | ||
| 120 | ||
| 121 | mse = Player:GetMouse() | |
| 122 | ||
| 123 | sound = Instance.new("Sound", Character)
| |
| 124 | sound.SoundId = "https://www.roblox.com/asset/?id=290807425" | |
| 125 | sound.Volume = 10 | |
| 126 | sound2 = Instance.new("Sound", Character)
| |
| 127 | sound2.SoundId = "https://www.roblox.com/asset/?id=290810519" | |
| 128 | sound2.Volume = 20 | |
| 129 | sound3 = Instance.new("Sound", Character)
| |
| 130 | sound3.SoundId = "https://www.roblox.com/asset/?id=290807377" | |
| 131 | sound3.Volume = 10 | |
| 132 | sound4 = Instance.new("Sound", Character)
| |
| 133 | sound4.SoundId = "https://www.roblox.com/asset/?id=290807397" | |
| 134 | sound4.Volume = 10 | |
| 135 | TSTheme = Instance.new("Sound", Character)
| |
| 136 | - | TSTheme.SoundId = "https://www.roblox.com/asset/?id=172374380" |
| 136 | + | TSTheme.SoundId = "https://www.roblox.com/asset/?id=1266338142" |
| 137 | TSTheme.Volume = 2 | |
| 138 | canworld = true | |
| 139 | mse.KeyDown:connect(function(key) | |
| 140 | key = key:lower() | |
| 141 | if key == "t" then | |
| 142 | if canworld == false then return end | |
| 143 | if canworld then | |
| 144 | canworld = false | |
| 145 | sound3:Play() | |
| 146 | tecks.Text = "Za Warudo!" | |
| 147 | wait(2) | |
| 148 | - | tecks.Text = "Checkmate." |
| 148 | + | tecks.Text = "PONPONPON" |
| 149 | sound:Play() | |
| 150 | sound4:Play() | |
| 151 | TSTheme:Play() | |
| 152 | ||
| 153 | local function spawnpart() | |
| 154 | sphere = Instance.new("Part")
| |
| 155 | --game.Debris:AddItem(sphere,3) | |
| 156 | local sm = Instance.new("SpecialMesh", sphere)
| |
| 157 | sm.MeshType = "Sphere" | |
| 158 | sphere.Transparency = 0.5 | |
| 159 | sphere.Anchored = true | |
| 160 | sphere.CanCollide = false | |
| 161 | sphere.Material = "Neon" | |
| 162 | sphere.BrickColor = BrickColor.new("Black")
| |
| 163 | end | |
| 164 | ||
| 165 | local function weld(lol) | |
| 166 | local weld = Instance.new("Weld", Player.Character.Torso)
| |
| 167 | weld.Part0 = Player.Character.Torso | |
| 168 | weld.Part1 = lol | |
| 169 | weld.C0 = Player.Character.Torso.CFrame:inverse() | |
| 170 | weld.C1 = lol.CFrame:inverse() | |
| 171 | end | |
| 172 | wait() | |
| 173 | spawnpart() | |
| 174 | for i, v in pairs(game.Players:GetChildren()) do | |
| 175 | t = v.Character:FindFirstChild("Torso")
| |
| 176 | if t then | |
| 177 | t.Anchored = true | |
| 178 | Player.Character:FindFirstChild("Torso").Anchored = false
| |
| 179 | end | |
| 180 | RA = v.Character:FindFirstChild("Right Arm")
| |
| 181 | if RA then | |
| 182 | RA.Anchored = true | |
| 183 | Player.Character:FindFirstChild("Right Arm").Anchored = false
| |
| 184 | end | |
| 185 | LA = v.Character:FindFirstChild("Left Arm")
| |
| 186 | if LA then | |
| 187 | LA.Anchored = true | |
| 188 | Player.Character:FindFirstChild("Left Arm").Anchored = false
| |
| 189 | end | |
| 190 | RL = v.Character:FindFirstChild("Right Leg")
| |
| 191 | if RL then | |
| 192 | RL.Anchored = true | |
| 193 | Player.Character:FindFirstChild("Right Leg").Anchored = false
| |
| 194 | end | |
| 195 | LL = v.Character:FindFirstChild("Left Leg")
| |
| 196 | if LL then | |
| 197 | LL.Anchored = true | |
| 198 | Player.Character:FindFirstChild("Left Leg").Anchored = false
| |
| 199 | end | |
| 200 | end | |
| 201 | weld(sphere) | |
| 202 | - | cce = Instance.new("ColorCorrectionEffect", game.Lighting)
|
| 202 | + | |
| 203 | - | cce.Saturation = -5 |
| 203 | + | |
| 204 | for i = 1,3 do | |
| 205 | sphere.Size = sphere.Size + Vector3.new(50,50,50) | |
| 206 | wait() | |
| 207 | end | |
| 208 | wait() | |
| 209 | sphere:Destroy() | |
| 210 | BeeSpeed = 0 | |
| 211 | end | |
| 212 | end | |
| 213 | - | cce.Saturation = -0.1 |
| 213 | + | |
| 214 | ) | |
| 215 | ||
| 216 | tecks.Text = "Luigi" | |
| 217 | - | cce.Saturation = -0.3 |
| 217 | + | |
| 218 | mse.KeyDown:connect(function(key) | |
| 219 | - | cce.Saturation = -1.5 |
| 219 | + | |
| 220 | - | wait() |
| 220 | + | |
| 221 | canworld = true | |
| 222 | tecks.Text = "Time continues moving again." | |
| 223 | sound2:Play() | |
| 224 | wait() | |
| 225 | BeeSpeed = 1 | |
| 226 | - | tecks.Text = "SilentZeroX" |
| 226 | + | |
| 227 | wait(0.5) | |
| 228 | BeeSpeed = 1.2 | |
| 229 | cce.Saturation = -0.5 | |
| 230 | wait(0.5) | |
| 231 | BeeSpeed = 1.4 | |
| 232 | cce.Saturation = -0.4 | |
| 233 | wait(0.3) | |
| 234 | BeeSpeed = 1.5 | |
| 235 | cce.Saturation = -0.2 | |
| 236 | wait(0.2) | |
| 237 | cce.Saturation = 0 | |
| 238 | ||
| 239 | for i, v in pairs(game.Players:GetChildren()) do | |
| 240 | t = v.Character:FindFirstChild("Torso")
| |
| 241 | if t then | |
| 242 | t.Anchored = false | |
| 243 | end | |
| 244 | RA = v.Character:FindFirstChild("Right Arm")
| |
| 245 | if RA then | |
| 246 | RA.Anchored = false | |
| 247 | end | |
| 248 | LA = v.Character:FindFirstChild("Left Arm")
| |
| 249 | if LA then | |
| 250 | LA.Anchored = false | |
| 251 | end | |
| 252 | RL = v.Character:FindFirstChild("Right Leg")
| |
| 253 | if RL then | |
| 254 | RL.Anchored = false | |
| 255 | end | |
| 256 | LL = v.Character:FindFirstChild("Left Leg")
| |
| 257 | if LL then | |
| 258 | LL.Anchored = false | |
| 259 | end | |
| 260 | end | |
| 261 | BeeSpeed = 100 | |
| 262 | tecks.Text = "Luigi" | |
| 263 | TSTheme:Stop() | |
| 264 | end | |
| 265 | end) |