RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"give a player a tool that gives a player abilities"
-- script for the tool local tool = Instance.new("Tool") tool.Name = "AbilityTool" tool.RequiresHandle = false tool.Parent = game.ServerStorage local function onPlayerAdded(player) local toolClone = tool:Clone() toolClone.Parent = player.Backpack toolClone.Activated:Connect(function() local character = player.Character if character then local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.WalkSpeed = 50 humanoid.JumpPower = 100 wait(5) humanoid.WalkSpeed = 16 humanoid.JumpPower = 50 end end end) end game.Players.PlayerAdded:Connect(onPlayerAdded)