boiyaaeaea

Untitled

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