|
| 20 Jul 2016 06:15 PM |
So, I found this; and I need help making it only available for me. Can someome provide me with a script example so, I can make this, "Orb that follows me" only mine?
local LocalPlayer = game:GetService("Players").LocalPlayer local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:wait() local Orb = Instance.new("Part", Character) Orb.Name = "Orb" Orb.Shape = Enum.PartType.Ball Orb.CanCollide = false Orb.BrickColor = BrickColor.new("Bright green") Orb.Transparency = 0.25 Orb.Size = Vector3.new(2, 2, 2) Orb.TopSurface = Enum.SurfaceType.Smooth Orb.BottomSurface = Enum.SurfaceType.Smooth local BodyPosition = Instance.new("BodyPosition", Orb) while wait(0) do BodyPosition.Position = Character.Head.CFrame:pointToWorldSpace(Vector3.new(2, 1, 0)) end
|
|
|
| Report Abuse |
|
|
j_ffrey
|
  |
| Joined: 12 Apr 2015 |
| Total Posts: 262 |
|
|
| 20 Jul 2016 06:22 PM |
instead of local player which makes it for everyone make it you
|
|
|
| Report Abuse |
|
|
|
| 20 Jul 2016 06:27 PM |
So it would be...
local Player = game:GetSever("Players".Player |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2016 06:28 PM |
| *local Player = game:GetSever("Players").Player |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2016 06:30 PM |
Severing player's seems a bit dark.
Mutilated robloxians. |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2016 06:40 PM |
Would this work?
if script.Parent.Parent.Parent.Name == "hephzibah112" or script.Parent.Parent.Parent.Name == "Player1" then print("Show Orb") else script.Parent:remove() end
|
|
|
| Report Abuse |
|
|
| |
|