|
| 07 Aug 2013 12:47 AM |
Im looking for some scripts for my game "Zombie Invasion" If you help I will put you in the credits.
1. I need a script that can delete the health bar on all the players screen.
2. I need a script that can change your walkspeed into 10.
3. I need a script that has first person view and can never change it. like really zoomed in and cannot zoom out.
Thank you for helping. |
|
|
| Report Abuse |
|
|
sonickyle
|
  |
| Joined: 01 Jan 2009 |
| Total Posts: 5653 |
|
|
| 07 Aug 2013 02:21 AM |
| What's stopping you from using Free Models? |
|
|
| Report Abuse |
|
|
|
| 07 Aug 2013 03:43 AM |
1. I need a script that can delete the health bar on all the players screen. ========================= game.Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function() Workspace[Player.Name]:WaitForChild("HealthGUI"):Destroy() end) end) =========================
2. I need a script that can change your walkspeed into 10. ========================= game.Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function() Workspace[Player.Name].Humanoid.WalkSpeed = 10 end) end) =========================
3. I need a script that has first person view and can never change it. like really zoomed in and cannot zoom out. ========================= --LocalScript game.Players.LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson ========================= |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 10 Aug 2013 02:49 AM |
| Don`t redirect him to SH redirect him to Scripters, We only help fix broken scripts. |
|
|
| Report Abuse |
|
|
MHebes
|
  |
| Joined: 04 Jan 2013 |
| Total Posts: 2278 |
|
|
| 10 Aug 2013 03:38 AM |
| Lol if you send him to Scripters he'd get ripped apart. |
|
|
| Report Abuse |
|
|