Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game.Players.LocalPlayer
- local avatar = player.Character
- local m = Instance.new("Hint")
- m.Text = "Wait.. Oh no!"
- wait(5)
- m.Text = game.Players.LocalPlayer.Name.. ", we had given him or her all the sandwiches!"
- wait(5)
- m.Text = "RUN!!!"
- wait(5)
- m:Destroy()
- local sign = Instance.new("BillboardGui")
- sign.Adornee = avatar.Head
- sign.Parent = avatar.Head
- avatar.Humanoid.WalkSpeed = 0
- avatar.Humanoid.JumpPower= 0
- sign.StudsOffset=Vector3.new(0.5,2,0)
- sign.Size=UDim2.new(3,0,3,0)
- text=Instance.new("TextLabel")
- text.Text= "Im Very Hungry"
- text.TextSize = 30
- text.TextStrokeTransparency = 0
- text.TextColor3 = Color3.new(255, 255, 255)
- text.TextStrokeColor3 = Color3.new(157, 157, 157)
- text.Size=UDim2.new(1,0,1,0)
- text.Position=UDim2.new(-0.125,0,-0.25,0)
- text.BackgroundTransparency = 1
- text.Parent=sign
- local OMI = Instance.new("Sound")
- OMI.SoundId = "rbxassetid://1575472350"
- OMI.Volume = 5
- OMI.Parent = avatar.Head
- OMI.Looped = true
- OMI:Play()
- local OMII = Instance.new("Sound")
- OMII.SoundId = "rbxassetid://316486782"
- OMII.Name = "Sound"
- OMII.Volume = 3
- OMII.Parent = player
- OMII.Looped = true
- OMII:Play()
- while true do
- waittime = math.random(0.1,0.5)
- wait(waittime)
- local sandwich = Instance.new("Part")
- sandwich.Parent = workspace
- sandwich.Position = avatar.Head.Position
- local mesh = Instance.new("SpecialMesh")
- sandwich.CanCollide = true
- mesh.MeshType = "FileMesh"
- mesh.TextureId = "rbxassetid://606289147"
- mesh.MeshId = "rbxassetid://606289140"
- mesh.Parent = sandwich
- mesh.Scale = Vector3.new(0.02, 0.02, 0.02)
- end
- Humanoid = avatar.Humanoid
- function OnDeath()
- player.Sound:Destroy()
- end
- Humanoid.Died:connect(OnDeath)
Advertisement
Add Comment
Please, Sign In to add comment