Advertisement
Kaemi

Untitled

Nov 29th, 2017
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.38 KB | None | 0 0
  1. --By Rufus14
  2. for i,v in pairs(game.Players:GetChildren()) do
  3.     v.Character.Humanoid.WalkSpeed = 500
  4. end
  5. music = Instance.new("Sound", game.Players.LocalPlayer.Character)
  6. music.SoundId = "rbxassetid://188736240"
  7. bom = Instance.new("Sound", game.Players.LocalPlayer.Character.Torso)
  8. bom.SoundId = "rbxassetid://142070127"
  9. music.Volume = 10
  10. music:Play()
  11. wait()
  12. roc = Instance.new("Part", game.Players.LocalPlayer.Character)
  13. roc:BreakJoints()
  14. roc.CanCollide = false
  15. roc.Size = Vector3.new(1,1,1)
  16. music.Looped = true
  17. music.Volume = 10
  18. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  19.     if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  20.         v:destroy()
  21.     end
  22.     if v.ClassName == "Part" then
  23.         v.Transparency = 1
  24.     end
  25.     if v.Name == "Part" then
  26.         v.Transparency = 0
  27.     end
  28. end
  29. weld = Instance.new("Weld", roc)
  30. weld.Part0 = game.Players.LocalPlayer.Character.Torso
  31. weld.Part1 = roc
  32. weld.C0 = weld.C0 * CFrame.Angles(0,3.15,0)
  33. meh = Instance.new("SpecialMesh", roc)
  34. meh.MeshId = "rbxassetid://430344534"
  35. meh.TextureId = "rbxassetid://430344538"
  36. meh.Scale = Vector3.new(2,2,2)
  37. fire = Instance.new("Fire", roc)
  38. fire.Color = Color3.new(255,255,255)
  39. fire.SecondaryColor = Color3.new(29, 202, 202)
  40. game.Players.LocalPlayer.Character.Head.face:destroy()
  41. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  42. function kill()
  43.     local ply = game.Players:GetPlayers()[math.random(game.Players.NumPlayers)]
  44.     if ply.Name == game.Players.LocalPlayer.Name then
  45.         kill()
  46.     else
  47.     print("Now you are killing "..ply.Name)
  48.     local rckt = Instance.new("RocketPropulsion", game.Players.LocalPlayer.Character.Torso)
  49.     rckt.MaxTorque = Vector3.new(math.huge,math.huge,math.huge)
  50.     rckt.Target = ply.Character.Torso
  51.     rckt.MaxSpeed = 100
  52.     rckt:fire()
  53.     local function boom()
  54.     rckt:destroy()
  55.     bom:Play()
  56.     ply.Character.Humanoid.Health = ply.Character.Humanoid.Health - 260
  57.     kill()
  58.     local exp = Instance.new("Part", workspace)
  59.     exp.BrickColor = BrickColor.new("New Yeller")
  60.     exp.Size = Vector3.new(1,1,1)
  61.     exp.Shape = "Ball"
  62.     exp.Anchored = true
  63.     exp.CanCollide = false
  64.     exp.Transparency = 0.1
  65.     exp.CFrame = ply.Character.Torso.CFrame
  66.     local cf = exp.CFrame
  67.     for i = 1,9 do
  68.         wait()
  69.         exp.Size = exp.Size + Vector3.new(1.5,1.5,1.5)
  70.         exp.Transparency = exp.Transparency + 0.1
  71.         exp.CFrame = cf
  72.     end
  73.     exp:destroy()
  74.     end
  75.     rckt.ReachedTarget:connect(boom)
  76.     end
  77. end
  78. kill()
  79. scr = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  80. txtbut = Instance.new("TextButton", scr)
  81. txtbut.Position = UDim2.new(0, 0,  0, 300)
  82. txtbut.Size = UDim2.new(0, 200,  0, 50)
  83. txtbut.Text = "First Person View"
  84. fpsing = false
  85. function fps()
  86.     while fpsing do
  87.         game.Workspace.CurrentCamera.CameraType = "Scriptable"
  88.         game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Head
  89.         game.Workspace.CurrentCamera.CFrame = game.Players.LocalPlayer.Character.Head.CFrame
  90.         game:GetService('RunService').RenderStepped:wait()
  91.         end
  92. end
  93. txtbut.MouseButton1Click:connect(fps)
  94. function fpser()
  95.     fpsing = not fpsing
  96.     game.Workspace.CurrentCamera.CameraType = "Custom"
  97.     game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  98. end
  99. txtbut.MouseButton1Click:connect(fpser)
  100. function deded()
  101. for i,v in pairs(game.Players:GetChildren()) do
  102.     v.Character.Humanoid.WalkSpeed = 16
  103. end
  104. end
  105. game.Players.LocalPlayer.Character.Humanoid.Died:connect(deded)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement