Thundear
|
  |
| Joined: 28 Jan 2013 |
| Total Posts: 790 |
|
|
| 16 May 2014 05:27 AM |
Need some help with developer product effects, like walkspeed, gravity etc
inb4 ot |
|
|
| Report Abuse |
|
|
| |
|
Thundear
|
  |
| Joined: 28 Jan 2013 |
| Total Posts: 790 |
|
| |
|
|
| 16 May 2014 06:00 AM |
I can
But there is a whole forum called scripting helpers |
|
|
| Report Abuse |
|
|
EvilMal
|
  |
| Joined: 10 Dec 2011 |
| Total Posts: 11134 |
|
|
| 16 May 2014 06:22 AM |
while true do game.workspace.localplayer.walkspeed.value = enterspeed game.workspace.localplayer.gravity.value = enternumber end
"Who wants to help me make someone else wet their pants with fear?" - Mal |
|
|
| Report Abuse |
|
|
|
| 16 May 2014 06:32 AM |
@evil
that was terrible lmao
I can script but I'm on ipad. |
|
|
| Report Abuse |
|
|
EvilMal
|
  |
| Joined: 10 Dec 2011 |
| Total Posts: 11134 |
|
|
| 16 May 2014 06:40 AM |
-- declare service local PointsService = Game:GetService("PointsService") -- Bind function to player added event game.Players.PlayerAdded:connect(function(player) -- Get total number of points the game has available local pointsToAward = PointsService:GetAwardablePoints() -- Get total number of points this game has already awarded to the player local universeBalance = PointsService:GetGamePointBalance(player.userId) -- Check if the game has points to award and if the player hasn't gotten any points yet. If both are true, then give the player a point. if ( pointsToAward > 0 and universeBalance == 0) then PointsService:AwardPoints(player.userId, 1) end end) -- Bind function to when points are successfully awarded PointsService.PointsAwarded:connect(function(userId, userBalanceinUni, userBalance) -- Show message indicating that a player has gotten points local message = Instance.new('Message', game.Workspace) message.Text = "Point awarded to " .. userId .. ". This player now has " .. userBalance .. " points total!" wait(5) message:Destroy() end
"Who wants to help me make someone else wet their pants with fear?" - Mal |
|
|
| Report Abuse |
|
|
|
| 16 May 2014 06:50 AM |
that's from the wiki, and that doesn't change the walkspeed or anything else.
you're really bad |
|
|
| Report Abuse |
|
|
|
| 16 May 2014 06:56 AM |
lol knee > u ok ahahhahahaa
^ Preach |
|
|
| Report Abuse |
|
|
EvilMal
|
  |
| Joined: 10 Dec 2011 |
| Total Posts: 11134 |
|
|
| 16 May 2014 08:05 AM |
game.workspace.localplayer.walkspeed.value = EnterNumber
"Who wants to help me make someone else wet their pants with fear?" - Mal |
|
|
| Report Abuse |
|
|
|
| 16 May 2014 08:17 AM |
| what I'm loling about is the script u took from wiki was for playerpoints |
|
|
| Report Abuse |
|
|