Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made by INOOBE_YT
- --Keep script in Workspace
- game.Players.PlayerAdded:connect(function(Player)
- Player.CharacterAdded:connect(function(Character)
- local Orb = Instance.new("Part", Character)
- Orb.BrickColor = BrickColor.new("Bright yellow")
- Orb.Material = "Pebble"
- Orb.Size = Vector3.new(1.4, 1.4, 1.4)
- Orb.Anchored = false
- Orb.CanCollide = false
- local Mesh = Instance.new("SpecialMesh", Orb)
- Mesh.MeshType = "Sphere"
- local BP = Instance.new("BodyPosition", Orb)
- BP.MaxForce = Vector3.new(10000, 10000, 10000)
- while wait() do
- BP.Position = Character:FindFirstChild("Torso").CFrame * CFrame.new(2, 2, 1.4).p
- end
- end)
- end)
- while wait() do
- for i = 1,10 do
- f.TextStrokeTransparency = f.TextStrokeTransparency-.05
- wait(.01)
- end
- for i = 1,10 do
- f.TextStrokeTransparency = f.TextStrokeTransparency+.05
- wait(.01)
- end
- end
- end)
- function onEnter(player)
- gui1=Instance.new("ScreenGui")
- gui1.Parent = player.PlayerGui
- gui1.Name = player.Name.."'s GuiOrb"
- button1main = Instance.new("TextButton")
- button1main.Parent = gui1
- button1main.Position = UDim2.new ( 0.025, 0, 0.2, 0)
- button1main.Size = UDim2.new ( 0.1, 0, 0.05, 0)
- button1main.Style = 1
- button1main.TextColor3 = Color3.new ( 65025, 65025, 65025)
- button1main.Text = "Open Commands"
- button2main = Instance.new("TextButton")
- button2main.Parent = gui1
- button2main.Position = UDim2.new ( 0.025, 0, 0.25, 0)
- button2main.Size = UDim2.new ( 0.1, 0, 0.05, 0)
- button2main.Style = 1
- button2main.TextColor3 = Color3.new ( 65025, 65025, 65025)
- button2main.Text = "Open SelfCommands"
- frame1main=Instance.new("Frame")
- frame1main.Parent = gui1
- frame1main.Name = "FindPlayer"
- frame1main.Style = 2
- frame1main.Position = UDim2.new ( 0.125, 0, 0.2, 0)
- frame1main.Size = UDim2.new ( 0.15, 0, 0.2, 0)
- frame1main.Visible = false
- button1main.MouseButton1Click:connect(function()
- if frame1main.Visible == false then
- frame1main.Visible = true
- button1main.Text = "Close Commands"
- elseif frame1main.Visible == true then
- frame1main.Visible = false
- button1main.Text = "Open Commands"
- end
- end)
- button1fp=Instance.new("TextButton")
- button1fp.Parent = frame1main
- button1fp.Name = "Selected"
- button1fp.Style = 1
- button1fp.Position = UDim2.new ( 0.1, 0, 0.3, 0)
- button1fp.Size = UDim2.new ( 0.8, 0, 0.2, 0)
- button1fp.TextColor3 = Color3.new (0, 0, 0)
- button1fp.FontSize = Enum.FontSize.Size14
- button1fp.Font = "ArialBold"
- button1fp.TextStrokeColor3 = Color3.new(128*255, 255*255, 255*255)
- button1fp.TextStrokeTransparency = .5
- button2fp=Instance.new("TextButton")
- button2fp.Parent = frame1main
- button2fp.Style = 1
- button2fp.Position = UDim2.new ( 0.1, 0, 0.47, 0)
- button2fp.Size = UDim2.new ( 0.8, 0, 0.2, 0)
- button2fp.TextColor3 = Color3.new ( 65025, 65025, 65025)
- button2fp.Text = "Next Player"
- button3fp=Instance.new("TextButton")
- button3fp.Parent = frame1main
- button3fp.Style = 1
- button3fp.Position = UDim2.new ( 0.1, 0, 0.64, 0)
- button3fp.Size = UDim2.new ( 0.8, 0, 0.2, 0)
- button3fp.TextColor3 = Color3.new ( 65025, 65025, 65025)
- button3fp.Text = "Previous Player"
- currplayer=1
- local stablize = coroutine.create(function()
- while true do
- wait()
- allplayers=game.Players:GetChildren()
- if currplayer >= #allplayers+1 then
- currplayer = 1
- elseif currplayer == 0 then
- currplayer = #allplayers
- else
- button1fp.Text = allplayers[currplayer].Name
- if (allplayers[currplayer].Name=="ttyyuu12345") or (allplayers[currplayer].Name=="DroptheBomb") then
- button1fp.TextStrokeColor3 = Color3.new(255*255,255*255,0)
- else
- button1fp.TextStrokeColor3 = Color3.new(128*255, 255*255, 255*255)
- end
- end
- end
- end)
- coroutine.resume(stablize)
- button2fp.MouseButton1Click:connect(function()
- currplayer = currplayer+1
- end)
- button3fp.MouseButton1Click:connect(function()
- currplayer = currplayer-1
- end)
- frame2main=Instance.new("Frame")
- frame2main.Parent = gui1
- frame2main.Style = 2
- frame2main.Position = UDim2.new ( 0.275, 0, 0.2, 0)
- frame2main.Size = UDim2.new ( 0.3, 0, 0.6, 0)
- frame2main.Name = "Player"
- frame2main.Visible = false
- frame3main=Instance.new("Frame")
- frame3main.Parent = gui1
- frame3main.Style = 2
- frame3main.Position = UDim2.new ( 0.125, 0, 0.2, 0)
- frame3main.Size = UDim2.new ( 0.2, 0, 0.5, 0)
- frame3main.Name = "SelfCommands"
- frame3main.Visible = false
- button2main.MouseButton1Click:connect(function()
- if frame3main.Visible == true then
- button2main.Text = "Open SelfCommands"
- frame3main.Visible = false
- elseif frame3main.Visible == false then
- frame3main.Visible = true
- button2main.Text = "Close SelfCommands"
- end
- end)
- selected = "ttyyuu12345"
- button1fp.MouseButton1Click:connect(function()
- selected = button1fp.Text
- frame2main.Visible = true
- end)
- local frame1a2main = coroutine.create(function()
- while wait() do
- if frame1main.Visible == false then
- frame2main.Visible = false
- end
- end
- end)
- coroutine.resume(frame1a2main)
- frame1p=Instance.new("Frame")
- frame1p.Parent = frame2main
- frame1p.Name = "Commands"
- frame1p.Style = 2
- frame1p.Size = UDim2.new ( 1, 0, 0.8, 0)
- frame1p.Position = UDim2.new (0, 0, 0.2, 0)
- frame2p=Instance.new("Frame")
- frame2p.Parent = frame2main
- frame2p.Name = "PM"
- frame2p.Style = 2
- frame2p.Size = UDim2.new ( 0.5, 0, 0.3, 0)
- frame2p.Position = UDim2.new ( 1.025, 0, 0, 0)
- frame2p.Visible = false
- image1p=Instance.new("ImageLabel")
- image1p.Parent = frame2main
- image1p.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username=ttyyuu12345"
- image1p.Name = "Person"
- image1p.BackgroundTransparency = 1
- image1p.Position = UDim2.new ( 0.3, 0, 0, 0)
- image1p.Size = UDim2.new ( 0.2, 0, 0.2, 0)
- label1p=Instance.new("TextLabel")
- label1p.Parent = frame2main
- label1p.Position = UDim2.new ( 0.72, 0, 0.1, 0)
- label1p.Name = "PersonName"
- label1p.Text = "ttyyuu12345"
- label1p.TextColor3 = Color3.new (0, 0, 0)
- label1p.FontSize = Enum.FontSize.Size14
- label1p.TextStrokeTransparency = .7
- local nametell = coroutine.create(function()
- while wait() do
- image1p.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username="..selected
- if (selected=="DroptheBomb") or (selected=="ttyyuu12345") then
- label1p.TextStrokeColor3 = Color3.new(255*255, 255*255, 0)
- else
- label1p.TextStrokeColor3 = Color3.new(128*255, 255*255, 255*255)
- end
- label1p.Text = selected
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement