Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local NoHead = Instance.new("TextButton")
- local Jumpscare = Instance.new("TextButton")
- local Chainsaw = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderSizePixel = 0
- Frame.Position = UDim2.new(0.276995301, 0, 0.0456989259, 0)
- Frame.Size = UDim2.new(0, 335, 0, 326)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(105, 255, 255)
- TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.BorderSizePixel = 0
- TextLabel.Size = UDim2.new(0, 335, 0, 50)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextSize = 14.000
- NoHead.Parent = Frame
- NoHead.BackgroundColor3 = Color3.fromRGB(128, 255, 108)
- NoHead.BorderColor3 = Color3.fromRGB(0, 0, 0)
- NoHead.BorderSizePixel = 0
- NoHead.Position = UDim2.new(0.200000003, 0, 0.241593257, 0)
- NoHead.Size = UDim2.new(0, 200, 0, 63)
- NoHead.Font = Enum.Font.SourceSans
- NoHead.Text = "No Head"
- NoHead.TextColor3 = Color3.fromRGB(0, 0, 0)
- NoHead.TextScaled = true
- NoHead.TextSize = 14.000
- NoHead.TextWrapped = true
- Jumpscare.Parent = Frame
- Jumpscare.BackgroundColor3 = Color3.fromRGB(128, 255, 108)
- Jumpscare.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Jumpscare.BorderSizePixel = 0
- Jumpscare.Position = UDim2.new(0.200000003, 0, 0.497416824, 0)
- Jumpscare.Size = UDim2.new(0, 200, 0, 63)
- Jumpscare.Font = Enum.Font.SourceSans
- Jumpscare.Text = "Jumpscare player"
- Jumpscare.TextColor3 = Color3.fromRGB(0, 0, 0)
- Jumpscare.TextScaled = true
- Jumpscare.TextSize = 14.000
- Jumpscare.TextWrapped = true
- Chainsaw.Parent = Frame
- Chainsaw.BackgroundColor3 = Color3.fromRGB(128, 255, 108)
- Chainsaw.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Chainsaw.BorderSizePixel = 0
- Chainsaw.Position = UDim2.new(0.200000003, 0, 0.763073146, 0)
- Chainsaw.Size = UDim2.new(0, 200, 0, 63)
- Chainsaw.Font = Enum.Font.SourceSans
- Chainsaw.Text = "Chainsaw Giver"
- Chainsaw.TextColor3 = Color3.fromRGB(0, 0, 0)
- Chainsaw.TextScaled = true
- Chainsaw.TextSize = 14.000
- Chainsaw.TextWrapped = true
- --scripts
- script.Parent.MouseButton1Click:Connect(function()
- game.Player.Clicked = game.Humanoid.Part.Head.Size * / 0
- print("players head turned small!!")
- end)
- --jumpscare script
- script.Parent.MouseButton1Click:Connect(function()
- game.Workspace.audio = audio.Sound(function(audio)
- audio.Id = "id here of any jumpscare"
- audio.Volume = 8
- audio.Playing = true
- audio.Looped = false
- audio.PlayOnRemove = true
- end)
- end)
- script.Parent.MouseButton1Click:Connect(function()
- local Chainsaw = game.Model(function(model)
- local chainsaw = model
- game.Chainsaw = Handle.Id
- Chainsaw.Id = "add chainsaw id from model id"
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement