Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---springtrap script by basstracker1970
- Player = game:GetService("Players").LocalPlayer
- Character = Player.Character
- local txt = Instance.new("BillboardGui", Character)
- txt.Adornee = Character.Head
- txt.Name = "Nametag"
- txt.Size = UDim2.new(2, 0, 1.2, 0)
- txt.StudsOffset = Vector3.new(-9, 6, 0)
- local text = Instance.new("TextLabel", txt)
- text.Size = UDim2.new(10, 0, 7, 0)
- text.TextSize = 24
- text.Font = Enum.Font.Cartoon
- text.TextScaled = false
- text.BackgroundTransparency = 1
- text.TextColor3 = Color3.new(1,1,1)
- text.TextStrokeTransparency = 0
- text.TextStrokeColor3 = Color3.new(1,0,0)
- text.Text = "SpringTrap"
- Mouse = Player:GetMouse()
- UIS = game:GetService("UserInputService")
- sound = Instance.new("Sound")
- sound.SoundId = "rbxassetid://295407783"
- sound.Parent = game.Workspace
- sound:Play()
- wait(5)
- sound:Stop()
- Player.Character.Shirt.ShirtTemplate = "rbxassetid://763613990"
- Player.Character.Pants.PantsTemplate = "rbxassetid://768001081"
- UIS.InputBegan:connect(function(input)
- if input.KeyCode == Enum.KeyCode.Z then
- for i, v in next, game:GetService("Players"):GetPlayers() do
- sound = Instance.new("Sound")
- sound.SoundId = "rbxassetid://255127524"
- sound.Parent = game.Workspace
- sound:Play()
- v.Character:BreakJoints()
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement