|
Brandog22Join Date: 2015-04-25 Post Count: 37 |
Create 2 Frames with text buttons. Make one say whatever you want as well as the other. I would have to make it to give the scriptime, but how experienced are you? |
|
|
well......i'm not an expert on scripting. i wish my friend was on because he was a good scripter......but he quit roblox a year ago. i mostly know how to make models. |
|
|
don't get me wrong, i can add those buttons in the game i just don't know much about scripting. |
|
Brandog22Join Date: 2015-04-25 Post Count: 37 |
lookup tutorials on the scripts you need. |
|
|
*sigh* of course you were going to say that. do you know how long it takes for me to learn to script? it takes years to do so. i just wish my friend was online to help me but he quit roblox. i just want to know what that gui/button is called, jeez. every rp game i came across had that button. |
|
|
sometimes you got to use a few free models in your game you know. |
|
Brandog22Join Date: 2015-04-25 Post Count: 37 |
What do you mean you want to know what the GUi thingy is? |
|
|
do you even know what i'am talking about?? |
|
|
i don't think you understand what i'm saying...... |
|
Brandog22Join Date: 2015-04-25 Post Count: 37 |
you said the Gui/Button thing. |
|
|
thats what those buttons are called, they are normally called "guis" |
|
|
This is 5 days old, but I can do it without pay.
|
|
|
|
i don't get how to work this. |
|
|
Put the X, Y, and Z coordinates into the spots where they go, labeled x,y,z. It's not very difficult. To get the X, Y, and Z coordinates, just place down a brick in the spawn/morph room and get it's posistion
https://www.roblox.com/games/644274423/The-Sight-of-View |
|
|
|
well i know how that works. but what about the returning to the same spot you were in?? |
|
|
Oh you wanted it like that. Well uh
|
|
|
yeah i wanted that type of teleport. now look, i'll make sure to give you credit for making that teleport for me alright. |
|
|
do you guys still don't understand what teleport button i mean? |
|
Brandog22Join Date: 2015-04-25 Post Count: 37 |
There is no specific individual thing you can insert but right clicking on Workspace that says teleporter. |
|
|
dude have you played some rp games like these?
https://www.roblox.com/games/17559259/Paper-Mario-Roleplay
https://www.roblox.com/games/433123135/Kirbys-Superstar-Roleplay
i'm talking about that type of teleport button that takes you to the morph room when you click it and when you click it again it takes you back to the same spot you were in. |
|
|
-- LocalScript for Lobby place
-- Declare local variables for ROBLOX Services
local TeleportService = game:GetService('TeleportService')
local UserInputService = game:GetService('UserInputService')
local StarterGui = game.StarterGui
-- Declare local variables
local player = game.Players.LocalPlayer
local otherPlaceId = 277345328
local forceField = Instance.new('ForceField')
local teleportButton = script.Parent
-- Create loading screen to fade in and pass with teleport function
local loadingScreen = Instance.new('ScreenGui', player.PlayerGui)
local loadingScreenFrame = Instance.new('Frame', loadingScreen)
loadingScreenFrame.Name = 'loadingScreenFrame'
loadingScreenFrame.BackgroundColor3 = Color3.new(0,0,0)
loadingScreenFrame.Size = UDim2.new(1,0,1,50)
loadingScreenFrame.Position = UDim2.new(0,0,0,-50)
loadingScreenFrame.Visible = false
-- Hide default teleport GUI elements
TeleportService.CustomizedTeleportUI = true
-- Bind function to OnTeleport in case teleport fails
player.OnTeleport:connect(function(teleportState)
if te#############=##num.TeleportState.Failed then
-- Disable force field
forceField.Parent = nil
-- Hide teleport GUI and show teleport button
loadingScreenFrame.BackgroundTransparency = 1
loadingScreenFrame.Visible = false
teleportButton.Visible = true
-- Show Core GUI elements and mouse cursor
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true)
UserInputService.MouseIconEnabled = true
end
end)
-- Bind function to GUI button
teleportButton.MouseButton1Click:connect(function()
-- Hide button, Core GUI, and mouse
teleportButton.Visible = false
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false)
UserInputService.MouseIconEnabled = false
-- Activate force field to protect player during teleport
forceField.Parent = player.Character
-- Show loading screen and fade it in
loadingScreenFrame.Visible = true
for i = 1, 0, -.05 do
loadingScreenFrame.BackgroundTransparency = i
wait()
end
loadingScreenFrame.BackgroundTransparency = 0
-- Teleport player and pass the loading screen
TeleportService:Teleport(otherPlaceId, player, nil, loadingScreen)
end) |
|
|
so thats the script for it? also there were some tags. |
|