boiyaaeaea

Untitled

May 2nd, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. -- by Theamazingnater
  2. plr = game.Players.LocalPlayer
  3. char = workspace:WaitForChild(plr.Name)
  4. mouse = plr:GetMouse()
  5.  
  6. 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. tecks = Instance.new("TextLabel",naeeym)
  11. tecks.BackgroundTransparency = 1
  12. tecks.BorderSizePixel = 0
  13. tecks.Text = plr.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.  
  22.  
  23. mouse.KeyDown:connect(function(key)
  24. if key == "t" then
  25. tecks.Text = "ZA WARUDO!!!!"
  26. local zawarudo = Instance.new("Sound",char.Torso)
  27. zawarudo.SoundId = "rbxassetid://1055792303"
  28. zawarudo.Volume = "5.000"
  29. zawarudo:Play()
  30. zawarudo.Name = "ZAWARUDO"
  31. wait(2)
  32. zawarudo.Parent = nil
  33. local soundeffect = Instance.new("Sound",char.Torso)
  34. soundeffect.SoundId = "rbxassetid://1235094803"
  35. soundeffect.Volume = "5"
  36. soundeffect:Play()
  37. soundeffect.Name = "ZaWarudoSoundEffect"
  38. for i,v in pairs (game.Players:GetChildren()) do
  39. local p = workspace:WaitForChild(v.Name)
  40. local t = p:FindFirstChild("Torso")
  41. if t then
  42. t.Anchored = true
  43. char:FindFirstChild("Torso").Anchored = false
  44. end
  45.  
  46. end
  47. tecks.Text = plr.Name
  48. end
  49. end)
  50.  
  51.  
  52. mouse.KeyDown:connect(function(keydown)
  53. if keydown == "e" then
  54. tecks.Text = "Time has continued..."
  55. local timehascontinued = Instance.new("Sound",char.Torso)
  56. timehascontinued.SoundId = "rbxassetid://290810519"
  57. timehascontinued.Volume = "5"
  58. timehascontinued:Play()
  59. for i,v in pairs(game.Players:GetChildren()) do
  60. local p = workspace:WaitForChild(v.Name)
  61. local t = p:FindFirstChild("Torso")
  62. if t then
  63. t.Anchored = false
  64. end
  65. end
  66. wait(2)
  67. tecks.Text = plr.Name
  68. timehascontinued:Destroy()
  69. end
  70. end)
  71.  
  72.  
  73. mouse.KeyDown:connect(function(keycode)
  74. if keycode == "v" then
  75. tecks.Text = "THE WORLD SLOW DOWN TIME!"
  76. wait(1)
  77. workspace.Gravity = "50"
  78. tecks.Text = plr.Name
  79. for i,v in pairs(game.Players:GetChildren()) do
  80. local c = workspace:WaitForChild(v.Name)
  81. local h = c.Humanoid
  82. if h then
  83. h.WalkSpeed = "4"
  84. end
  85. end
  86. end
  87. end)
  88.  
  89.  
  90. mouse.KeyDown:connect(function(key2)
  91. if key2 == "r" then
  92. tecks.Text = "Time has returned to normal speed."
  93. local timehasreturned = Instance.new("Sound",char.Torso)
  94. timehasreturned.SoundId = "rbxassetid://290810519"
  95. timehasreturned.Volume = 5
  96. timehasreturned:Play()
  97. workspace.Gravity = "190"
  98. for i,v in pairs(game.Players:GetChildren()) do
  99. local c = workspace:WaitForChild(v.Name)
  100. local h = c.Humanoid
  101. if h then
  102. h.WalkSpeed = "16"
  103. end
  104. wait(2)
  105. timehasreturned:Destroy()
  106. tecks.Text = plr.Name
  107. end
  108. end
  109. end)
Advertisement
Add Comment
Please, Sign In to add comment