FE Box

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

--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)

You might also like