jango464
|
  |
| Joined: 30 Jul 2009 |
| Total Posts: 4913 |
|
|
| 08 Jun 2012 08:28 PM |
| I am making a FPS (First Person Shooter) with the roblox FPS plugin. The first person works but the scoreboard and the timer don't. Also, the class and leaderboard doesn't. In the output it has no errors. It only says "PlayerGui .. waiting for .. CaptureBB." Does anyone know how to make the captuerBB Gui? |
|
|
| Report Abuse |
|
jango464
|
  |
| Joined: 30 Jul 2009 |
| Total Posts: 4913 |
|
| |
|
| 08 Jun 2012 08:35 PM |
The FPS plugin is a load of crap in my opinion. I wouldn't use it. I'd make my own game (Which I am, building it right now) using this Character Settings script i'v made.
local FirstPersonMode = true -- True to spawn WITH First Person Mode, false to spawn WITHOUT. local SpawnWithForceField = false -- True to spawn WITH Force Field, false to spawn WITHOUT. --local SetSpawnWalkSpeed = 20 -- 16 is RBLOX Default. local SpawnWithHealthBarGui = false -- True to spawn WITH Health Bar, false to spawn WITHOUT.
--[[
1. Please note that any in-game scripts cannot change these features. The player will alway's, have the chosen settings from above applied.
2. If any Error's, Bugs, Problem's, or Idea found, please Contact Swordmasternoah.
3. ???
4. Profit.
]]-- wait(0.05) script.Parent = game:GetService("StarterPack") while wait() do if FirstPersonMode then if game:GetService("Players").LocalPlayer then game:GetService("Players").LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson end end if not SpawnWithForceField then if game:GetService("Players").LocalPlayer.Character then if game:GetService("Players").LocalPlayer.Character:findFirstChild("ForceField") then game:GetService("Players").LocalPlayer.Character:findFirstChild("ForceField"):Destroy() end end end --if SetSpawnWalkSpeed ~= 16 then --game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = SetSpawnWalkSpeed --end if SpawnWithHealthBarGui then if game:GetService("Players").LocalPlayer:findFirstChild("PlayerGui") then if game:GetService("Players").LocalPlayer.PlayerGui:findFirstChild("HealthGUI") then game:GetService("Players").LocalPlayer.PlayerGui:findFirstChild("HealthGUI"):Destroy() end end end end
--Swordmasternoah ლ(ಠ_ಠლ) |
|
|
| Report Abuse |
|