of     1   

r_eload
#228367191Sunday, December 03, 2017 6:28 AM GMT

Looking to create a tool with a handle that might be held onto by the torso so the entire bush or mesh would be covering the characters body, once I have the tool and the parts, what might I do from there and what type of things should I put into server storage. If you know how to do this or want to do this PM me your place so I can test it and I'll pay ya robux for it. Thanks.
Soybeen
#228370082Sunday, December 03, 2017 8:16 AM GMT

-- 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)
Soybeen
#228370280Sunday, December 03, 2017 8:25 AM GMT

I forgot to tell you to make a folder called "Events" in the ReplicatedStorage and put a RemoteEvent named BushToggle in it.
r_eload
#228411676Monday, December 04, 2017 2:02 AM GMT

Thanks man

    of     1