of     1   

ethanlaj
#208280048Thursday, January 26, 2017 5:55 PM GMT

Title
UltimateRaheem
#208280377Thursday, January 26, 2017 6:05 PM GMT

A client-sided part eh? Well put this in a local script: local part = instance.new("Part", workspace.CurrentCamera) --I think it's this. Or if FE is on, just create a part in local script. Want to be supported by developers in a positive atmosphere? Then join Studio BSD: roblox.com/My/Groups.aspx?gid=1013064
ethanlaj
#208280567Thursday, January 26, 2017 6:11 PM GMT

That didn't work, I put the local script in the Workspace, correct?
ethanlaj
#208280602Thursday, January 26, 2017 6:12 PM GMT

A local script in the Workspace: local part = game.ReplicatedStorage.Part:Clone() part.Parent = workspace.Camera
ethanlaj
#208280614Thursday, January 26, 2017 6:12 PM GMT

local part = game.ReplicatedStorage.Part:Clone() part.Parent = workspace.CurrentCamera *
TimeTicks
#208280646Thursday, January 26, 2017 6:13 PM GMT

You don't put anything in the Camera. Use FE and a local script Instance.new('Part',workspace) boom. done.
UltimateRaheem
#208280647Thursday, January 26, 2017 6:13 PM GMT

LocalScripts do not work in Workspace. Unless they are parented to something that uses the client. Place the LocalScript in something like ReplicatedStorage or in StarterPlayerScripts. Want to be supported by developers in a positive atmosphere? Then join Studio BSD: roblox.com/My/Groups.aspx?gid=1013064
ethanlaj
#208280869Thursday, January 26, 2017 6:20 PM GMT

wait (5) if script.Parent.Parent:GetRankInGroup(2911975) >= 3 then local part = game.ReplicatedStorage.Part:Clone() part.Parent = workspace.CurrentCamera part.CanCollide = false else local part = game.ReplicatedStorage.Part:Clone() part.Parent = workspace.CurrentCamera end This is all in the LocalScript, it doesn't work.
TimeTicks
#208281072Thursday, January 26, 2017 6:27 PM GMT

omfg workspace.FilteringEnabled = true --local script local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:wait() local part = game.ReplicatedStorage:WaitForChild('Part') if player:GetRankInGroup(2911975) >= 3 then local part = part:Clone() part.Parent = workspace part.CanCollide = false else part:Clone().Parent = workspace end
ethanlaj
#208283528Thursday, January 26, 2017 7:39 PM GMT

^ FE will break all of my scripts...
FumeiSencho
#208287330Thursday, January 26, 2017 9:03 PM GMT

Put the script in PlayerGui, StarterPlayerScripts, or StarterCharacterScripts. You never put localscripts in workspace or in workspace's descendants (except player characters or tools within characters). It's useless to do so.

    of     1