of     1   

ripper555333
#183544506Sunday, February 14, 2016 12:15 AM GMT

Anyone know how to target the player using RocketPropulsion? I tried this: RP.Target = game.Workspace.player.Character.Torso ____________________________________________________ But it does not work.
gum444
#183544895Sunday, February 14, 2016 12:20 AM GMT

game.Workspace.player.Character.Torso.Position?
ripper555333
#183545086Sunday, February 14, 2016 12:22 AM GMT

It says: player is not a valid member of Workspace.
ripper555333
#183546044Sunday, February 14, 2016 12:34 AM GMT

BUMP
ParadigmaticAnon
#183546137Sunday, February 14, 2016 12:35 AM GMT

Did you use the "Fire()" method?
ripper555333
#183546533Sunday, February 14, 2016 12:41 AM GMT

Yes.
LordDamionDevil
#183546754Sunday, February 14, 2016 12:45 AM GMT

local plr = game.Players.LocalPlayer local player = game.Workspace[plr.Name].Torso.Position RP.Target = game.Workspace.player.Character.Torso
LordDamionDevil
#183546802Sunday, February 14, 2016 12:45 AM GMT

ops my mistake fixed version: local plr = game.Players.LocalPlayer local player = game.Workspace[plr.Name] RP.Target = game.Workspace.player.Torso.Position
LordDamionDevil
#183546856Sunday, February 14, 2016 12:46 AM GMT

._. Srsly local plr = game.Players.LocalPlayer local player = game.Workspace[plr.Name] RP.Target = game.Workspace[player].Torso.Position Now it should function!
TwistyTies
#183547134Sunday, February 14, 2016 12:50 AM GMT

@Lord This should work: local plr = game.Players.LocalPlayer local character repeat wait() until plr.Character~=nil character = plr.Character RP.Target = character.Torso.Position If money grew on trees... It would be as valuable as leaves. | Twitter: @TwisterRBLX
LordDamionDevil
#183547361Sunday, February 14, 2016 12:55 AM GMT

@twister Oh yeah I forgot that lol anyways tahnks for fixing my xD now ripper only needs to see yours

    of     1