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