|
| 22 Jun 2013 11:06 PM |
It is a LocalScript placed in the StarterPack and is therefore transfered into the player's backpack. It's supposed to reduce the player's character's speed down to 12 and then print a message confirming that it worked. None of these things happened. The script is below.
Player = script.Parent.Parent Player.CharacterAdded:connect(function(Character) Character.Humanoid.WalkSpeed = 12 print("WalkSpeed of " .. player.Name .. " reduced to 12") end)
|
|
|
| Report Abuse |
|
|
|
| 22 Jun 2013 11:08 PM |
if it's a localscript in the backpack, just change it to this:
repeat wait() until Game.Players.LocalPlayer.Character Game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=12 |
|
|
| Report Abuse |
|
|
|
| 22 Jun 2013 11:08 PM |
| OT: That was my 1,900th post. :) |
|
|
| Report Abuse |
|
|
Voidion
|
  |
| Joined: 01 Aug 2011 |
| Total Posts: 2668 |
|
|
| 22 Jun 2013 11:08 PM |
local Player = game.Players.LocalPlayer
Player.Character.Humanoid.WalkSpeed = 12 print("WalkSpeed of " .. Player.Name .. " reduced to 12") |
|
|
| Report Abuse |
|
|
|
| 22 Jun 2013 11:11 PM |
| I tried Samuel's script and it worked, problem solved. Thanks. |
|
|
| Report Abuse |
|
|