Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Can someone tell me what's wrong with my script?

Asked by 9 years ago

`Health = 150 Speed = 50 Teleport = game.Workspace.NarutoTeleport

local function NarutoGiver(Part) script.Disabled = true Char = Part.Parent if game.Players:GetPlayerFromCharacter(Part.Parent) ~= nil then Player = game.Players:GetPlayerFromCharacter(Part.Parent) R = game.Lighting.Rasengan:clone() R.Parent = Player.Backpack Char.Humanoid.MaxHealth = Health Char.Humanoid.Health = Health Char.Humanoid.WalkSpeed = 50 Char:MoveTo(game.Workspace.NarutoTeleport.Position) end` I'm trying to make a rasengan ball, which I did before but wasn't in my hand. Please tell me what is wrong.

1 answer

Log in to vote
0
Answered by 9 years ago

You forgot to connect the event to the function, and forgot an end, thus the script did not work;

local Health = 150
local Speed = 50
local Teleport = game.Workspace:WaitForChild("NarutoTeleport")
local Debounce = true
local timeForDebounce = 2

local function NarutoGiver(Part)
--script.Disabled = true -- This'll disable the script before it even fires. :/
if game.Players:GetPlayerFromCharacter(Part.Parent) and Debounce then
Debounce = false
Player = game.Players:GetPlayerFromCharacter(Part.Parent)
R = game.Lighting:WaitForChild("Rasengan"):Clone()
R.Parent = Player:WaitForChild("Backpack")
Player.Character:WaitForChild("Humanoid").MaxHealth = Health
Player.Character:WaitForChild("Humanoid").Health = Player.Character:WaitForChild("Humanoid").MaxHealth
Player.Character:WaitForChild("Humanoid").WalkSpeed = Speed
Player.Character:MoveTo(game.Workspace.NarutoTeleport.Position)
wait(timeForDebounce)
Debounce = true
end
end

game.Workspace.WhateverNameHere:connect(NarutoGiver)

Kind of edited your script, but it should work now. Hope this helped!

Ad

Answer this question