Jurdy
|
  |
| Joined: 02 Aug 2014 |
| Total Posts: 327 |
|
|
| 25 Oct 2014 02:06 PM |
I made this script and it seems to work in solo mode, but when i actually save it and test it out in-Game it doesn't work:
--Yes it is a local script --Yes i put it in StarterPack
plr = game.Players.LocalPlayer cam = game.workspace.CurrentCamera
plr.CameraMode = "LockFirstPerson"
--Even this simple command doesn't work!
h = Instance.new("Hint",game.Workspace) wait(1) h.Text = "doesn't work see!" wait(5) h:Destroy() |
|
|
| Report Abuse |
|
|
|
| 25 Oct 2014 02:09 PM |
| u cant make hints from a local script most likely |
|
|
| Report Abuse |
|
|
Jurdy
|
  |
| Joined: 02 Aug 2014 |
| Total Posts: 327 |
|
|
| 25 Oct 2014 02:09 PM |
| no the hint wasn't a local script, but the camera script was a local script |
|
|
| Report Abuse |
|
|
|
| 25 Oct 2014 02:11 PM |
local plr = game.Players.LocalPlayer local cam = game.Workspace.CurrentCamera plr.CameraMode = 'LockFirstPerson'
local h = Instance.new('Hint', game.Workspace) wait(1) h.Text = 'doesn't work see!' wait(5) h:Destroy() |
|
|
| Report Abuse |
|
|
Jurdy
|
  |
| Joined: 02 Aug 2014 |
| Total Posts: 327 |
|
|
| 25 Oct 2014 02:14 PM |
| @Fame, you practically copied what i just did :/ |
|
|
| Report Abuse |
|
|
Jurdy
|
  |
| Joined: 02 Aug 2014 |
| Total Posts: 327 |
|
| |
|
| |
|