- Fe - Roblox Laser Gun Giver Script- ((free)) -

In the past, players used "Local" scripts where the gun would appear for them, but nobody else could see it. An FE Script attempts to replicate the tool or the visual effects to the server so other players can see you holding the weapon.

-- Giver Script inside the Part local ServerStorage = game:GetService( "ServerStorage" ) local toolName = "LaserGun" -- Name of your tool in ServerStorage local debounce = false script.Parent.Touched:Connect( function (hit) local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player and not debounce then local tool = ServerStorage:FindFirstChild(toolName) if tool and not player.Backpack:FindFirstChild(toolName) then debounce = true tool:Clone().Parent = player.Backpack task.wait( 2 ) -- Cooldown debounce = false end end end ) Use code with caution. Copied to clipboard 2. The Laser Gun Script (FE Compatible) - FE - Roblox Laser Gun Giver Script-

Наверх