RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a script that gives new players wooden sword when they join"
-- server script (ServerScriptService) local Players = game:GetService("Players") local function onPlayerAdded(player) local starterGear = player:WaitForChild("StarterGear") local sword = Instance.new("Tool") sword.Name = "Wooden Sword" sword.Parent = game.ServerStorage local handle = Instance.new("Part") handle.Name = "Handle" handle.Parent = sword handle.BrickColor = BrickColor.new("Brown") handle.Size = Vector3.new(1, 3, 1) handle.TopSurface = Enum.SurfaceType.Smooth handle.BottomSurface = Enum.SurfaceType.Smooth handle.CanCollide = false local weld = Instance.new("Weld") weld.Parent = handle weld.Part0 = handle weld.Part1 = sword.Handle sword.Parent = starterGear end Players.PlayerAdded:Connect(onPlayerAdded)