-- put a part with a bush mesh inside the ReplicatedStorage named BushPart
-- put this in a local script in the tool, turn FE on
local rep = game:GetService("ReplicatedStorage")
local player = game.Players.LocalPlayer
local char = player.Character
local tool = script.Parent
tool.Equipped:connect(function()
rep.Events.BushToggle:FireServer(true)
end)
tool.Unequipped:connect(function()
rep.Events.BushToggle:FireServer(false)
end)
-- and in a server script inside the ServerScriptService, write
local rep = game:GetService("ReplicatedStorage")
game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function(char)
char.PrimaryPart.Anchored = true -- to make sure he doesn't move in the short time it takes to weld
local bushPart = rep.BushPart:Clone()
bushPart.CFrame = char.PrimaryPart.CFrame
bushPart.Parent = char
local weld = Instance.new("ManualWeld",bushPart)
weld.Part0 = bushPart
weld.Part1 = char.PrimaryPart
weld.C0 = CFrame.new(0,0,0) -- if it needs an offset
char.PrimaryPart.Anchored = false
end)
end)
rep.Events.BushToggle.OnServerEvent:connect(function(player,toggle)
local switch
if toggle then switch = 1 else switch = -1 end
for _,v in next,player.Character:GetDescendants() do
if v:IsA("BasePart") then
v.Transparency = switch
end
end
char.BushPart.Transparency = -1*switch
end)
|