Advertisement
memberhero

test7

Nov 21st, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. ---springtrap script by basstracker1970
  2. Player = game:GetService("Players").LocalPlayer
  3. Character = Player.Character
  4. local txt = Instance.new("BillboardGui", Character)
  5. txt.Adornee = Character.Head
  6. txt.Name = "Nametag"
  7. txt.Size = UDim2.new(2, 0, 1.2, 0)
  8. txt.StudsOffset = Vector3.new(-9, 6, 0)
  9. local text = Instance.new("TextLabel", txt)
  10. text.Size = UDim2.new(10, 0, 7, 0)
  11. text.TextSize = 24
  12. text.Font = Enum.Font.Cartoon
  13. text.TextScaled = false
  14. text.BackgroundTransparency = 1
  15. text.TextColor3 = Color3.new(1,1,1)
  16. text.TextStrokeTransparency = 0
  17. text.TextStrokeColor3 = Color3.new(1,0,0)
  18. text.Text = "SpringTrap"
  19.  
  20. Mouse = Player:GetMouse()
  21. UIS = game:GetService("UserInputService")
  22. sound = Instance.new("Sound")
  23. sound.SoundId = "rbxassetid://295407783"
  24. sound.Parent = game.Workspace
  25. sound:Play()
  26. wait(5)
  27. sound:Stop()
  28. Player.Character.Shirt.ShirtTemplate = "rbxassetid://763613990"
  29. Player.Character.Pants.PantsTemplate = "rbxassetid://768001081"
  30. UIS.InputBegan:connect(function(input)
  31. if input.KeyCode == Enum.KeyCode.Z then
  32. for i, v in next, game:GetService("Players"):GetPlayers() do
  33.  
  34.  
  35. sound = Instance.new("Sound")
  36. sound.SoundId = "rbxassetid://255127524"
  37. sound.Parent = game.Workspace
  38. sound:Play()
  39. v.Character:BreakJoints()
  40. end
  41. end
  42. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement