Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Put in startergui
- local UserInputService = game:GetService("UserInputService")
- local Gas = Instance.new("Smoke")
- repeat wait(0.5) until game.Players.LocalPlayer.Character
- Gas.Color = Color3.new(0, 85, 0)
- Gas.Parent = game.Players.LocalPlayer.Character.LowerTorso
- Gas.Enabled = false
- UserInputService.InputBegan:Connect(function(input)
- if input.KeyCode == Enum.KeyCode.F then
- Gas.Enabled = true
- print("Farted")
- -- put a sound into script and put here:script.Sound:Play()
- wait(2)
- Gas.Enabled = false
- end
- end)
Add Comment
Please, Sign In to add comment