Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --https://www.roblox.com/catalog/9350274205/Vans-Black-White-Checkerboard-Umbrella
- local plr = game.Players.LocalPlayer
- local char = plr.Character
- local uis = game:GetService("UserInputService")
- local sitting = false
- if char.Humanoid.RigType == Enum.HumanoidRigType.R15 then
- plr:Kick("This script does not support R15! Please switch to R6.")
- end
- for i, v in pairs(char:GetDescendants()) do
- if v:IsA("Accessory") then
- if v.Name ~= "VANS_Umbrella" then
- v:Destroy()
- end
- end
- end
- char.VANS_Umbrella:WaitForChild("Handle").Mesh:Destroy()
- char.VANS_Umbrella:WaitForChild("Handle").Position = char.HumanoidRootPart.Position + Vector3.new(0, 0.9, 0)
- char["Left Arm"]:Destroy()
- char["Right Arm"]:Destroy()
- local function inputBegan(object,gameProcessedEvent)
- if (uis:GetFocusedTextBox()) then
- return; -- make sure player's not chatting!
- end
- if (object.KeyCode == Enum.KeyCode.E) then
- char.Humanoid.Sit = true
- end
- end
- uis.InputBegan:Connect(inputBegan)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement